We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 476f7b4 commit 7624c5cCopy full SHA for 7624c5c
test/pathological_tests.py
@@ -100,7 +100,7 @@ def badhash(ref):
100
passed = 0
101
errored = 0
102
ignored = 0
103
-TIMEOUT = 5
+TIMEOUT = 1
104
105
def run_test(inp, regex):
106
parser = argparse.ArgumentParser(description='Run cmark tests.')
@@ -138,12 +138,12 @@ def run_test(inp, regex):
138
p.terminate()
139
p.join()
140
print('[TIMED OUT]')
141
- if allowed_failures[description]:
+ if description in allowed_failures:
142
ignored += 1
143
else:
144
errored += 1
145
elif p.exitcode != 0:
146
147
148
149
0 commit comments