aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtestsuite/gna/testsuite.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/testsuite/gna/testsuite.py b/testsuite/gna/testsuite.py
index a405919ec..4ea91212d 100755
--- a/testsuite/gna/testsuite.py
+++ b/testsuite/gna/testsuite.py
@@ -8,7 +8,6 @@ import os
import os.path
import time
-DIRS=['bug*', 'sr*', 'deb*', 'ticket*', 'issue*', 'gls*']
NUMJOBS=4
class Job(object):
@@ -31,9 +30,7 @@ class Job(object):
def run(keep):
# List of tests to run
- tests = []
- for d in DIRS:
- tests.extend(glob.glob(d))
+ tests = glob.glob('*[0-9]')
start_time = time.time()
jobs = []