diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-14 07:30:02 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-14 07:30:02 +0200 |
commit | 9c9195793dc72e91e2df4d509560e43da6c3424c (patch) | |
tree | d008911e617cb7ff27e95a1ff1ee16ae16822c7a | |
parent | f2bb88484488ec158562399a213498a15a8599f9 (diff) | |
download | ghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.tar.gz ghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.tar.bz2 ghdl-9c9195793dc72e91e2df4d509560e43da6c3424c.zip |
testsuite/gna: make testsuite.py neutral.
-rwxr-xr-x | testsuite/gna/testsuite.py | 5 |
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 = [] |