Author: Amaury Forgeot d'Arc <[email protected]>
Branch: win32-faulthandler
Changeset: r91008:8a26b88f227a
Date: 2017-04-06 22:47 +0200
http://bitbucket.org/pypy/pypy/changeset/8a26b88f227a/
Log: hg backout 832db07f1970
diff --git a/pypy/testrunner_cfg.py b/pypy/testrunner_cfg.py
--- a/pypy/testrunner_cfg.py
+++ b/pypy/testrunner_cfg.py
@@ -9,7 +9,11 @@
]
def collect_one_testdir(testdirs, reldir, tests):
- if reldir.startswith('module/faulthandler'):
+ for dir in DIRS_SPLIT:
+ if reldir.startswith(dir):
+ testdirs.extend(tests)
+ break
+ else:
testdirs.append(reldir)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit