Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions test/core/internal_names.fail.wast

This file was deleted.

21 changes: 0 additions & 21 deletions test/core/module_shadow.fail.wast

This file was deleted.

2 changes: 0 additions & 2 deletions test/core/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ def _runTestFile(self, inputPath):

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

Expand Down
42 changes: 0 additions & 42 deletions test/core/threads/duplicate_thread_name.fail.wast

This file was deleted.

32 changes: 0 additions & 32 deletions test/core/threads/infinite_loop.fail.wast

This file was deleted.

10 changes: 0 additions & 10 deletions test/core/threads/unlinkable.wast
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,20 @@
(memory (export "shared") 1 1 shared)
)

;; (thread $T1
;; (module (memory (import "mem" "shared") 1 1 shared))
;; )

(thread $T2
(assert_unlinkable
(module (memory (import "mem" "shared") 1 1 shared))
"unknown import"
)
)

;; (wait $T1)
(wait $T2)

;; (thread $T3 (shared (module $Mem))
;; (module (memory (import "mem" "shared") 1 1 shared))
;; )

(thread $T4 (shared (module $Mem))
(assert_unlinkable
(module (memory (import "mem" "shared") 1 1 shared))
"unknown import"
)
)

;; (wait $T3)
(wait $T4)