From ac7ce888c0739c277ccb047154575e687c7a69e9 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 19 May 2009 23:36:10 +0700 Subject: [PATCH] runall.py: do not exclude test_threading.py, it works OK now --- greentest/runall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greentest/runall.py b/greentest/runall.py index 6e7a53d..f26eb0d 100755 --- a/greentest/runall.py +++ b/greentest/runall.py @@ -39,7 +39,7 @@ PARSE_PERIOD = 10 # the following aren't in the default list unless --all option present NOT_HUBS = set(['nginx']) NOT_REACTORS = set(['wxreactor', 'glib2reactor', 'gtk2reactor']) -NOT_TESTS = set(['test_threading.py']) +NOT_TESTS = set() def w(s): sys.stderr.write("%s\n" % (s, ))