Skip to content

Commit d130657

Browse files
committed
Merge branch 'main' of github.com:WebAssembly/spec into wasmfx-merge
2 parents 0c0fed4 + b4dd180 commit d130657

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

test/core/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
parser.add_argument("--wasm", metavar="<wasm-command>", default=os.path.join(interpDir, "wasm"))
2020
parser.add_argument("--js", metavar="<js-command>")
2121
parser.add_argument("--generate-js-only", action='store_true')
22+
parser.add_argument("--failfast", action='store_true')
2223
parser.add_argument("--out", metavar="<out-dir>", default=outputDir)
2324
parser.add_argument("file", nargs='*')
2425
arguments = parser.parse_args()
@@ -120,4 +121,4 @@ def _runTestFile(self, inputPath):
120121
for fileName in inputFiles:
121122
testName = 'test ' + os.path.basename(fileName)
122123
setattr(RunTests, testName, lambda self, file=fileName: self._runTestFile(file))
123-
unittest.main()
124+
unittest.main(failfast=arguments.failfast)

test/meta/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
SHARED_MEM=false
22

33
# SpiderMonkey shell
4-
JSSHELL=~/mozilla-central/js/src/build-debug/dist/bin/js -e 'const WITH_SHARED_MEMORY=$(SHARED_MEM);' -f common.js
4+
#JSSHELL=~/mozilla-central/js/src/build-debug/dist/bin/js -e 'const WITH_SHARED_MEMORY=$(SHARED_MEM);' -f common.js
55

66
# Node.js
7-
#JSSHELL=./noderun.sh $(SHARED_MEM)
7+
JSSHELL=./noderun.sh $(SHARED_MEM)
88

99
TARGETDIR=../core
1010

0 commit comments

Comments
 (0)