Skip to content

Commit

Permalink
Fix _minus_ in skip file (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter authored Jan 8, 2024
1 parent d213f76 commit 4890014
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/generate_skip_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
.replace("_minus_", "-")
.replace("_plus_", "+")
.replace("_xor_", "^"),
m.split("::")[-1],
m.split("::")[-1]
.replace("_minus_", "-")
.replace("_plus_", "+")
.replace("_xor_", "^"),
)
for m in re.findall(r"thread '(.*)' panicked at", data)
]
Expand Down

0 comments on commit 4890014

Please sign in to comment.