Skip to content

Commit 4ec6568

Browse files
authored
Fix local debugging of test262 (#79)
1 parent 53f32e0 commit 4ec6568

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test262.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# being manually executed.
44
set -e
55

6-
TESTS=${@:-"**/*.js"}
6+
TESTS=${TESTS:-"*/Temporal/**/*.js"}
77
TIMEOUT=${TIMEOUT:-10000}
88

99
if [ "$(uname)" = 'Darwin' ]; then
@@ -27,5 +27,5 @@ test262-harness \
2727
--prelude "../../dist/script.js" \
2828
--timeout "$TIMEOUT" \
2929
--preprocessor ../../test/preprocessor.test262.cjs \
30-
"*/Temporal/$TESTS" \
30+
"$TESTS" \
3131
| ../../test/parseResults.js

0 commit comments

Comments
 (0)