From ab5666eae00102f0ea7753f6c449e9778b14287b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 11 Jun 2015 12:13:55 -0700 Subject: pathological_tests: removed timeout stuff. It breaks on Windows. --- test/pathological_tests.py | 34 +++++++++++----------------------- 1 file changed, 11 insertions(+), 23 deletions(-) (limited to 'test/pathological_tests.py') diff --git a/test/pathological_tests.py b/test/pathological_tests.py index abc67ce..fe5d2e4 100644 --- a/test/pathological_tests.py +++ b/test/pathological_tests.py @@ -6,8 +6,6 @@ import argparse import sys import platform from cmark import CMark -from multiprocessing import Process, Value -import time if __name__ == "__main__": parser = argparse.ArgumentParser(description='Run cmark tests.') @@ -55,38 +53,28 @@ pathological = { } whitespace_re = re.compile('/s+/') -passed = Value('i', 0) -errored = Value('i', 0) -failed = Value('i', 0) +passed = 0 +errored = 0 +failed = 0 -def do_cmark_test(inp, regex, passed, errored, failed): +print("Testing pathological cases:") +for description in pathological: + (inp, regex) = pathological[description] [rc, actual, err] = cmark.to_html(inp) if rc != 0: - errored.value += 1 + errored += 1 print(description, '[ERRORED (return code %d)]' %rc) print(err) elif regex.search(actual): print(description, '[PASSED]') - passed.value += 1 + passed += 1 else: print(description, '[FAILED]') print(repr(actual)) - failed.value += 1 - -print("Testing pathological cases:") -for description in pathological: - (inp, regex) = pathological[description] - p = Process(target=do_cmark_test, args=(inp, regex, passed, errored, failed)) - p.start() - p.join(1) - if p.is_alive(): - print(description, '[FAILED (timed out)]') - p.terminate() - p.join() - failed.value += 1 + failed += 1 -print("%d passed, %d failed, %d errored" % (passed.value, failed.value, errored.value)) -if (failed.value == 0 and errored.value == 0): +print("%d passed, %d failed, %d errored" % (passed, failed, errored)) +if (failed == 0 and errored == 0): exit(0) else: exit(1) -- cgit v1.2.3