From: Gabe Black Date: Tue, 28 Aug 2018 03:20:40 +0000 (-0700) Subject: systemc: Add a --working-dir option to the test config.py. X-Git-Tag: v19.0.0.0~1720 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=457a086235862f8e01dfe0dad1177a756535ec51;p=gem5.git systemc: Add a --working-dir option to the test config.py. The tests expect to be run from a certain directory. Generally that doesn't matter, but in at least one case the test opens a file with a relative path, and that doesn't work unless CWD is what it expects. Change-Id: I34c0ed975e77daed50ace4f7eebd034bf04c5595 Reviewed-on: https://gem5-review.googlesource.com/12271 Reviewed-by: Gabe Black Maintainer: Gabe Black --- diff --git a/src/systemc/tests/config.py b/src/systemc/tests/config.py index 4b143d109..439a6828c 100755 --- a/src/systemc/tests/config.py +++ b/src/systemc/tests/config.py @@ -27,7 +27,9 @@ from __future__ import print_function +import argparse import m5 +import os import re from m5.objects import SystemC_Kernel, Root @@ -37,6 +39,13 @@ from m5.objects import SystemC_Kernel, Root kernel = SystemC_Kernel() root = Root(full_system=True, systemc_kernel=kernel) +parser = argparse.ArgumentParser() +parser.add_argument('--working-dir') + +args = parser.parse_args() +if args.working_dir: + os.chdir(args.working_dir) + kernel.sc_main("Hello", "World"); m5.instantiate(None)