diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/imported_memory.wast | 1 | ||||
-rw-r--r-- | test/imported_memory.wast.fromBinary | 1 | ||||
-rw-r--r-- | test/imported_memory.wast.fromBinary.noDebugInfo | 1 | ||||
-rw-r--r-- | test/imported_memory_growth.wast | 1 | ||||
-rw-r--r-- | test/imported_memory_growth.wast.fromBinary | 1 | ||||
-rw-r--r-- | test/imported_memory_growth.wast.fromBinary.noDebugInfo | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/test/imported_memory.wast b/test/imported_memory.wast index fb3c45f5a..790ffbbfa 100644 --- a/test/imported_memory.wast +++ b/test/imported_memory.wast @@ -1,3 +1,4 @@ (module (import "env" "memory" (memory $0 256 256)) + (import "env" "table" (table 256 256 anyfunc)) ) diff --git a/test/imported_memory.wast.fromBinary b/test/imported_memory.wast.fromBinary index bcbd85473..5df005bc1 100644 --- a/test/imported_memory.wast.fromBinary +++ b/test/imported_memory.wast.fromBinary @@ -1,4 +1,5 @@ (module (import "env" "memory" (memory $0 256 256)) + (import "env" "table" (table 256 256 anyfunc)) ) diff --git a/test/imported_memory.wast.fromBinary.noDebugInfo b/test/imported_memory.wast.fromBinary.noDebugInfo index bcbd85473..5df005bc1 100644 --- a/test/imported_memory.wast.fromBinary.noDebugInfo +++ b/test/imported_memory.wast.fromBinary.noDebugInfo @@ -1,4 +1,5 @@ (module (import "env" "memory" (memory $0 256 256)) + (import "env" "table" (table 256 256 anyfunc)) ) diff --git a/test/imported_memory_growth.wast b/test/imported_memory_growth.wast index d13b95853..a6e99fe85 100644 --- a/test/imported_memory_growth.wast +++ b/test/imported_memory_growth.wast @@ -1,3 +1,4 @@ (module (import "env" "memory" (memory $0 256)) + (import "env" "table" (table 256 anyfunc)) ) diff --git a/test/imported_memory_growth.wast.fromBinary b/test/imported_memory_growth.wast.fromBinary index 426313d7f..821aba207 100644 --- a/test/imported_memory_growth.wast.fromBinary +++ b/test/imported_memory_growth.wast.fromBinary @@ -1,4 +1,5 @@ (module (import "env" "memory" (memory $0 256)) + (import "env" "table" (table 256 anyfunc)) ) diff --git a/test/imported_memory_growth.wast.fromBinary.noDebugInfo b/test/imported_memory_growth.wast.fromBinary.noDebugInfo index 426313d7f..821aba207 100644 --- a/test/imported_memory_growth.wast.fromBinary.noDebugInfo +++ b/test/imported_memory_growth.wast.fromBinary.noDebugInfo @@ -1,4 +1,5 @@ (module (import "env" "memory" (memory $0 256)) + (import "env" "table" (table 256 anyfunc)) ) |