diff options
Diffstat (limited to 'test/spec')
-rw-r--r-- | test/spec/import-after-memory.fail.wast | 1 | ||||
-rw-r--r-- | test/spec/old_import.wast | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/test/spec/import-after-memory.fail.wast b/test/spec/import-after-memory.fail.wast deleted file mode 100644 index fbe582a93..000000000 --- a/test/spec/import-after-memory.fail.wast +++ /dev/null @@ -1 +0,0 @@ -(module (memory 0) (import "" "" (global i32))) diff --git a/test/spec/old_import.wast b/test/spec/old_import.wast index eba633388..a68df1389 100644 --- a/test/spec/old_import.wast +++ b/test/spec/old_import.wast @@ -126,16 +126,6 @@ (assert_trap (invoke "call" (i32.const 3)) "uninitialized element") (assert_trap (invoke "call" (i32.const 100)) "undefined element") - -(assert_invalid - (module (import "" "" (table 10 funcref)) (import "" "" (table 10 funcref))) - "multiple tables" -) -(assert_invalid - (module (import "" "" (table 10 funcref)) (table 10 funcref)) - "multiple tables" -) - (assert_unlinkable (module (import "spectest" "unknown" (table 10 funcref))) "unknown import" |