From df39f3ec851279d8159dbdfff7f0f83f854c08dc Mon Sep 17 00:00:00 2001 From: Victoria Mitchell Date: Wed, 6 Jul 2022 15:29:11 -0600 Subject: [PATCH] wip: bait out errors in pathological_tests --- test/pathological_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/pathological_tests.py b/test/pathological_tests.py index 4d4d38939..41301e921 100644 --- a/test/pathological_tests.py +++ b/test/pathological_tests.py @@ -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