summaryrefslogtreecommitdiff
path: root/test/run-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-xtest/run-tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/run-tests.py b/test/run-tests.py
index 3f995e2b..2eb7ebbf 100755
--- a/test/run-tests.py
+++ b/test/run-tests.py
@@ -928,7 +928,10 @@ def main(args):
action='store_true')
parser.add_argument('patterns', metavar='pattern', nargs='*',
help='test patterns.')
+ parser.add_argument('--exclude-dir', action='append', default=[],
+ help='directory to exclude.')
options = parser.parse_args(args)
+ exclude_dirs = options.exclude_dir
if options.jobs != 1:
if options.fail_fast:
@@ -937,7 +940,6 @@ def main(args):
parser.error('--stop-interactive only works with -j1')
if options.patterns:
- exclude_dirs = []
pattern_re = '|'.join(
fnmatch.translate('*%s*' % p) for p in options.patterns)
else:
@@ -945,7 +947,7 @@ def main(args):
# By default, exclude wasi tests because WASI support is not include
# by int the build by default.
# TODO(sbc): Find some way to detect the WASI support.
- exclude_dirs = ['wasi']
+ exclude_dirs += ['wasi']
test_names = FindTestFiles('.txt', pattern_re, exclude_dirs)