Fix path to config file in test 30

This commit is contained in:
Matt Guthaus 2018-11-09 16:33:08 -08:00
parent d6c0247ff2
commit 550d5cc729
1 changed files with 6 additions and 6 deletions

View File

@ -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)