Skip to content

Commit ff17701

Browse files
authored
quick test fixes (#232)
1 parent 4e2a1bb commit ff17701

File tree

6 files changed

+0
-118
lines changed

6 files changed

+0
-118
lines changed

test/core/internal_names.fail.wast

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/core/module_shadow.fail.wast

Lines changed: 0 additions & 21 deletions
This file was deleted.

test/core/run.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ def _runTestFile(self, inputPath):
7878

7979
# Run original file
8080
expectedExitCode = 1 if ".fail." in inputFile else 0
81-
if expectedExitCode == 1:
82-
print("### Expected exit 1; " + inputPath)
8381
logPath = self._auxFile(outputPath + ".log")
8482
self._runCommand(('%s "%s"') % (wasmCommand, inputPath), logPath, expectedExitCode)
8583

test/core/threads/duplicate_thread_name.fail.wast

Lines changed: 0 additions & 42 deletions
This file was deleted.

test/core/threads/infinite_loop.fail.wast

Lines changed: 0 additions & 32 deletions
This file was deleted.

test/core/threads/unlinkable.wast

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,20 @@
22
(memory (export "shared") 1 1 shared)
33
)
44

5-
;; (thread $T1
6-
;; (module (memory (import "mem" "shared") 1 1 shared))
7-
;; )
8-
95
(thread $T2
106
(assert_unlinkable
117
(module (memory (import "mem" "shared") 1 1 shared))
128
"unknown import"
139
)
1410
)
1511

16-
;; (wait $T1)
1712
(wait $T2)
1813

19-
;; (thread $T3 (shared (module $Mem))
20-
;; (module (memory (import "mem" "shared") 1 1 shared))
21-
;; )
22-
2314
(thread $T4 (shared (module $Mem))
2415
(assert_unlinkable
2516
(module (memory (import "mem" "shared") 1 1 shared))
2617
"unknown import"
2718
)
2819
)
2920

30-
;; (wait $T3)
3121
(wait $T4)

0 commit comments

Comments
 (0)