From 550d5cc729c13401f9b4273aeebb69f8aa729536 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Fri, 9 Nov 2018 16:33:08 -0800 Subject: [PATCH] Fix path to config file in test 30 --- compiler/tests/30_openram_test.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/tests/30_openram_test.py b/compiler/tests/30_openram_test.py index a8a16426..afa60216 100755 --- a/compiler/tests/30_openram_test.py +++ b/compiler/tests/30_openram_test.py @@ -46,12 +46,12 @@ class openram_test(openram_test): OPENRAM_HOME = os.path.abspath(os.environ.get("OPENRAM_HOME")) - cmd = "python3 {0}/openram.py -n -o {1} -p {2} {3} config_20_{4}.py 2>&1 > {5}/output.log".format(OPENRAM_HOME, - out_file, - out_path, - opts, - OPTS.tech_name, - out_path) + cmd_string = "python3 {0}/openram.py -n -o {1} -p {2} {3} {0}/tests/config_20_{4}.py 2>&1 > {2}/output.log" + cmd = cmd_string.format(OPENRAM_HOME, + out_file, + out_path, + opts, + OPTS.tech_name) debug.info(1, cmd) os.system(cmd)