mirror of https://github.com/lnis-uofu/SOFA.git
[Testbench] Bug fix in calling sub python script
This commit is contained in:
parent
11d4b156b4
commit
d867dbb1bf
|
@ -88,7 +88,7 @@ for curr_pre_pnr_testbench_file in pre_pnr_testbench_files:
|
||||||
curr_post_pnr_testbench_file = re.sub("\/prepnr\/", "\/postpnr\/", curr_post_pnr_testbench_file)
|
curr_post_pnr_testbench_file = re.sub("\/prepnr\/", "\/postpnr\/", curr_post_pnr_testbench_file)
|
||||||
curr_wrapper_testbench_file = re.sub("_autocheck_top_tb.v$", "_wrapper_autocheck_top_tb.v", curr_post_pnr_testbench_file)
|
curr_wrapper_testbench_file = re.sub("_autocheck_top_tb.v$", "_wrapper_autocheck_top_tb.v", curr_post_pnr_testbench_file)
|
||||||
logging.info("Processing " + curr_post_pnr_testbench_file + " testbench:")
|
logging.info("Processing " + curr_post_pnr_testbench_file + " testbench:")
|
||||||
cmd = "python3 " + script_base_dir_abspath + "./post_pnr_wrapper_testbench_converter.py " \
|
cmd = "python3 " + script_base_dir_abspath + "/post_pnr_wrapper_testbench_converter.py " \
|
||||||
+ " --post_pnr_testbench " + curr_post_pnr_testbench_file \
|
+ " --post_pnr_testbench " + curr_post_pnr_testbench_file \
|
||||||
+ " --pin_assignment_file " + args.pin_assignment_file \
|
+ " --pin_assignment_file " + args.pin_assignment_file \
|
||||||
+ " --wrapper_testbench " + curr_wrapper_testbench_file
|
+ " --wrapper_testbench " + curr_wrapper_testbench_file
|
||||||
|
|
Loading…
Reference in New Issue