aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-08-14 07:30:02 +0200
committerTristan Gingold <tgingold@free.fr>2019-08-14 07:30:02 +0200
commit9c9195793dc72e91e2df4d509560e43da6c3424c (patch)
treed008911e617cb7ff27e95a1ff1ee16ae16822c7a /testsuite/gna
parentf2bb88484488ec158562399a213498a15a8599f9 (diff)
downloadghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.tar.gz
ghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.tar.bz2
ghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.zip
testsuite/gna: make testsuite.py neutral.
Diffstat (limited to 'testsuite/gna')
-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 = []