Skip to content

Commit 6b81e47

Browse files
authored
Merge pull request #115 from os-fpga/sep_bug_fix
Files swapped bug fixed
2 parents cf9e295 + 7451caf commit 6b81e47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

primitive_parser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@ def diff_copy_parse(src_path, dest_path):
469469

470470

471471
# print("sim_list", len(sim_fail_list), "parse_list", len(parse_list_fail))
472-
473472
return no_tb_list, sim_fail_list,sim_pass_list, parse_list_fail, new_prim_found, diff_bb, diff_result, bb_Path
474473

475474

@@ -618,9 +617,10 @@ def email_dump(no_tb_list,sim_fail_list,parse_list_fail, sim_pass_list,new_prim
618617

619618
# Open the file in write mode and write the list of strings
620619

621-
fail_list, no_tb_list , sim_pass_list = process_blckbox( no_tb_list, sim_fail_list ,sim_pass_list, parse_list_fail, new_prim_found, bb_path)
620+
sim_pass_list, no_tb_list , fail_list = process_blckbox( no_tb_list, sim_fail_list ,sim_pass_list, parse_list_fail, new_prim_found, bb_path)
621+
622+
print("SIm pass list is here ", sim_pass_list)
622623

623-
624624
if len(no_tb_list) > 0:
625625
with open("no_tb.txt", "w") as file:
626626
for string in no_tb_list:

0 commit comments

Comments
 (0)