diff options
author | Sam Clegg <sbc@chromium.org> | 2024-05-10 10:27:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 17:27:48 +0000 |
commit | 9975b56614d4a5560b35f009be20d51e360b69dc (patch) | |
tree | 23bc795095b4ec76cc8c118c044a4b6a2d5ebcf7 | |
parent | 1cc15017f90571cc1eb74e673a3168977ba1be85 (diff) | |
download | binaryen-9975b56614d4a5560b35f009be20d51e360b69dc.tar.gz binaryen-9975b56614d4a5560b35f009be20d51e360b69dc.tar.bz2 binaryen-9975b56614d4a5560b35f009be20d51e360b69dc.zip |
Fix running just a single spec test via `check.py spec --spec-test foo`. NFC (#6580)
-rw-r--r-- | scripts/test/shared.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 3a9b5a26c..68c8b9d94 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -79,7 +79,7 @@ def parse_args(args): help=('If specified, all unfreed (but still referenced) pointers at the' ' end of execution are considered memory leaks. Default: disabled.')) parser.add_argument( - '--spec-test', action='append', nargs='*', default=[], dest='spec_tests', + '--spec-test', action='append', default=[], dest='spec_tests', help='Names specific spec tests to run.') parser.add_argument( 'positional_args', metavar='TEST_SUITE', nargs='*', @@ -159,7 +159,6 @@ if not options.out_dir: if not os.path.exists(options.out_dir): os.makedirs(options.out_dir) -os.chdir(options.out_dir) # Finds the given executable 'program' in PATH. @@ -384,10 +383,12 @@ def get_tests(test_dir, extensions=[], recursive=False): return sorted(tests) -if not options.spec_tests: - options.spec_tests = get_tests(get_test_dir('spec'), ['.wast']) +if options.spec_tests: + options.spec_tests = [os.path.abspath(t) for t in options.spec_tests] else: - options.spec_tests = options.spec_tests[:] + options.spec_tests = get_tests(get_test_dir('spec'), ['.wast']) + +os.chdir(options.out_dir) # 11/27/2019: We updated the spec test suite to upstream spec repo. For some # files that started failing after this update, we added the new files to this |