gem5-regression: pass extra_arguments to command, was getting ignored

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-12-09 00:00:00 +00:00
parent 50ac89b779
commit e223985eaa
2 changed files with 29 additions and 6 deletions

View File

@@ -32,8 +32,10 @@ https://cirosantilli.com/linux-kernel-module-cheat#gem5-regression-tests
'--variant', self.env['gem5_build_type'], LF,
'-j', str(self.env['nproc']), LF,
'-t', str(self.env['nproc']), LF,
],
] +
self.sh.add_newlines(self.env['extra_args']),
cwd=os.path.join(self.env['gem5_source_dir'], 'tests'),
raise_on_failure=False,
)
if __name__ == '__main__':