From e41b90449deb312cc7b3fec56d6851b5b782fc1d Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Thu, 6 Dec 2018 05:34:05 -0800 Subject: [PATCH] specify config file abs path --- compiler/tests/30_openram_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/tests/30_openram_test.py b/compiler/tests/30_openram_test.py index 60dffb46..8ea3558e 100755 --- a/compiler/tests/30_openram_test.py +++ b/compiler/tests/30_openram_test.py @@ -45,12 +45,12 @@ class openram_test(openram_test): # Always perform code coverage if OPTS.coverage == 0: debug.warning("Failed to find coverage installation. This can be installed with pip3 install coverage") - exe_name = "coverage run -p {0}/openram.py ".format(OPENRAM_HOME) - cmd = "{0} -n -o {1} -p {2} {3} config_20_{4}.py 2>&1 > {5}/output.log".format(exe_name, + exe_name = "coverage run -p {0}/openram.py ".format(OPENRAM_HOME) + cmd = "{0} -n -o {1} -p {2} {3} {4} 2>&1 > {5}/output.log".format(exe_name, out_file, out_path, verbosity, - OPTS.tech_name, + OPTS.config_file, out_path) debug.info(1, cmd) os.system(cmd)