Skip to content

Commit a2ce410

Browse files
committed
fix test running after multi userland args change for gem5
1 parent 1661644 commit a2ce410

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

common.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ def __init__(
435435
self.add_argument(
436436
'-b',
437437
'--baremetal',
438+
action='append',
438439
help='''\
439440
Use the given baremetal executable instead of the Linux kernel.
440441
@@ -1161,8 +1162,8 @@ def join(*paths):
11611162
env['qcow2_file'] = env['buildroot_qcow2_file']
11621163

11631164
# Image
1164-
if env['baremetal'] is not None:
1165-
env['image'] = self.resolve_baremetal_executable(env['baremetal'])
1165+
if env['baremetal']:
1166+
env['image'] = self.resolve_baremetal_executable(env['baremetal'][0])
11661167
source_path_noext = os.path.splitext(join(
11671168
env['root_dir'],
11681169
env['image'][len(env['baremetal_build_dir']) + 1:]

test-executables

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ If given, run only the given tests. Otherwise, run all tests.
6363
if my_path_properties.should_be_tested(self.env):
6464
cur_run_args = run_args.copy()
6565
cur_run_args.update({
66-
self.env['mode']: os.path.relpath(
66+
self.env['mode']: [os.path.relpath(
6767
os.path.join(path_abs, in_filename),
6868
os.getcwd()
69-
),
69+
)],
7070
})
7171
cur_run_args.update(my_path_properties['test_run_args'])
7272
if my_path_properties['test_stdin_data'] is not None:

0 commit comments

Comments
 (0)