diff options
author | 2009-03-07 13:36:30 +0000 | |
---|---|---|
committer | 2009-03-07 13:36:30 +0000 | |
commit | bbb1996550bf4a54681fa5cd0a859cb38dfd51dc (patch) | |
tree | 4faaa0b42b246749cb98a5bb98d4a64d311c5c33 /pypy/testrunner_cfg.py | |
parent | Remove this directory. (diff) | |
download | pypy-bbb1996550bf4a54681fa5cd0a859cb38dfd51dc.tar.gz pypy-bbb1996550bf4a54681fa5cd0a859cb38dfd51dc.tar.bz2 pypy-bbb1996550bf4a54681fa5cd0a859cb38dfd51dc.zip |
Merge the pyjitpl5 branch to trunk.
Diffstat (limited to 'pypy/testrunner_cfg.py')
-rw-r--r-- | pypy/testrunner_cfg.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pypy/testrunner_cfg.py b/pypy/testrunner_cfg.py index c8de80f758..719a979e61 100644 --- a/pypy/testrunner_cfg.py +++ b/pypy/testrunner_cfg.py @@ -1,9 +1,7 @@ # nightly test configuration for the paraller runner def collect_one_testdir(testdirs, reldir, tests): - if (reldir.startswith('jit/codegen/i386/') or - reldir.startswith('jit/timeshifter/') or - reldir.startswith('translator/c/') or + if (reldir.startswith('translator/c/') or reldir.startswith('rlib/test') or reldir.startswith('rpython/memory/')): testdirs.extend(tests) |