Skip to content

Commit

Permalink
add valid action for expect headers
Browse files Browse the repository at this point in the history
  • Loading branch information
lathuili committed Jun 11, 2024
1 parent 4ccf545 commit 5a7453b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyTools/verrou_dd_stdout
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,11 @@ class stdoutConfig(dd_config.ddConfig):
continue
if line.startswith("apply: ") or line.startswith("post-apply: ") or line.startswith("default"):
value=line.split(" ")[1].replace("\n","")
correctValueTab=["nop","default","stop","start","panic","exit","display_counter"]
correctValueTab=["nop","default",
"stop","start","stop_stop","start_stop",
"init","post_init",
"panic","exit", "nb_instr",
"display_counter","dump_cover"]
if value in correctValueTab:
continue
else:
Expand Down

0 comments on commit 5a7453b

Please sign in to comment.