Skip to content

Commit

Permalink
wip: bait out errors in pathological_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
QuietMisdreavus committed Jul 8, 2022
1 parent 476f7b4 commit df39f3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pathological_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ def run_test(inp, regex):
p.terminate()
p.join()
print('[TIMED OUT]')
if allowed_failures[description]:
if description in allowed_failures:
ignored += 1
else:
errored += 1
elif p.exitcode != 0:
if allowed_failures[description]:
if description in allowed_failures:
ignored += 1
else:
errored += 1
Expand Down

0 comments on commit df39f3e

Please sign in to comment.