runall.py: do not exclude test_threading.py, it works OK now

This commit is contained in:
Denis Bilenko
2009-05-19 23:36:10 +07:00
parent d7f17ab277
commit ac7ce888c0

View File

@@ -39,7 +39,7 @@ PARSE_PERIOD = 10
# the following aren't in the default list unless --all option present # the following aren't in the default list unless --all option present
NOT_HUBS = set(['nginx']) NOT_HUBS = set(['nginx'])
NOT_REACTORS = set(['wxreactor', 'glib2reactor', 'gtk2reactor']) NOT_REACTORS = set(['wxreactor', 'glib2reactor', 'gtk2reactor'])
NOT_TESTS = set(['test_threading.py']) NOT_TESTS = set()
def w(s): def w(s):
sys.stderr.write("%s\n" % (s, )) sys.stderr.write("%s\n" % (s, ))