diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/memory-shared.wast | 4 | ||||
-rw-r--r-- | test/memory-shared.wast.from-wast | 3 | ||||
-rw-r--r-- | test/memory-shared.wast.fromBinary | 4 | ||||
-rw-r--r-- | test/memory-shared.wast.fromBinary.noDebugInfo | 4 | ||||
-rw-r--r-- | test/print/memory-import-shared.minified.txt | 1 | ||||
-rw-r--r-- | test/print/memory-import-shared.txt | 3 | ||||
-rw-r--r-- | test/print/memory-import-shared.wast | 3 | ||||
-rw-r--r-- | test/print/memory-notshared.minified.txt | 2 | ||||
-rw-r--r-- | test/print/memory-notshared.txt | 3 | ||||
-rw-r--r-- | test/print/memory-notshared.wast | 3 | ||||
-rw-r--r-- | test/print/memory-shared.minified.txt | 2 | ||||
-rw-r--r-- | test/print/memory-shared.txt | 3 | ||||
-rw-r--r-- | test/print/memory-shared.wast | 3 |
13 files changed, 38 insertions, 0 deletions
diff --git a/test/memory-shared.wast b/test/memory-shared.wast new file mode 100644 index 000000000..b16e00d99 --- /dev/null +++ b/test/memory-shared.wast @@ -0,0 +1,4 @@ +(module + (memory $0 23 256 shared) +) + diff --git a/test/memory-shared.wast.from-wast b/test/memory-shared.wast.from-wast new file mode 100644 index 000000000..daff79f22 --- /dev/null +++ b/test/memory-shared.wast.from-wast @@ -0,0 +1,3 @@ +(module + (memory $0 23 256 shared) +) diff --git a/test/memory-shared.wast.fromBinary b/test/memory-shared.wast.fromBinary new file mode 100644 index 000000000..b16e00d99 --- /dev/null +++ b/test/memory-shared.wast.fromBinary @@ -0,0 +1,4 @@ +(module + (memory $0 23 256 shared) +) + diff --git a/test/memory-shared.wast.fromBinary.noDebugInfo b/test/memory-shared.wast.fromBinary.noDebugInfo new file mode 100644 index 000000000..b16e00d99 --- /dev/null +++ b/test/memory-shared.wast.fromBinary.noDebugInfo @@ -0,0 +1,4 @@ +(module + (memory $0 23 256 shared) +) + diff --git a/test/print/memory-import-shared.minified.txt b/test/print/memory-import-shared.minified.txt new file mode 100644 index 000000000..56d11ab17 --- /dev/null +++ b/test/print/memory-import-shared.minified.txt @@ -0,0 +1 @@ +(module(import "env" "memory" (memory $0 256 shared)))
\ No newline at end of file diff --git a/test/print/memory-import-shared.txt b/test/print/memory-import-shared.txt new file mode 100644 index 000000000..7bbb11ab1 --- /dev/null +++ b/test/print/memory-import-shared.txt @@ -0,0 +1,3 @@ +(module + (import "env" "memory" (memory $0 256 shared)) +) diff --git a/test/print/memory-import-shared.wast b/test/print/memory-import-shared.wast new file mode 100644 index 000000000..7bbb11ab1 --- /dev/null +++ b/test/print/memory-import-shared.wast @@ -0,0 +1,3 @@ +(module + (import "env" "memory" (memory $0 256 shared)) +) diff --git a/test/print/memory-notshared.minified.txt b/test/print/memory-notshared.minified.txt new file mode 100644 index 000000000..905aff3d5 --- /dev/null +++ b/test/print/memory-notshared.minified.txt @@ -0,0 +1,2 @@ +(module(memory $0 23 256) +)
\ No newline at end of file diff --git a/test/print/memory-notshared.txt b/test/print/memory-notshared.txt new file mode 100644 index 000000000..604a6b1ce --- /dev/null +++ b/test/print/memory-notshared.txt @@ -0,0 +1,3 @@ +(module + (memory $0 23 256) +) diff --git a/test/print/memory-notshared.wast b/test/print/memory-notshared.wast new file mode 100644 index 000000000..4a7b8449a --- /dev/null +++ b/test/print/memory-notshared.wast @@ -0,0 +1,3 @@ +(module + (memory $0 23 256 notshared) +) diff --git a/test/print/memory-shared.minified.txt b/test/print/memory-shared.minified.txt new file mode 100644 index 000000000..3f07a0080 --- /dev/null +++ b/test/print/memory-shared.minified.txt @@ -0,0 +1,2 @@ +(module(memory $0 23 256 shared) +)
\ No newline at end of file diff --git a/test/print/memory-shared.txt b/test/print/memory-shared.txt new file mode 100644 index 000000000..daff79f22 --- /dev/null +++ b/test/print/memory-shared.txt @@ -0,0 +1,3 @@ +(module + (memory $0 23 256 shared) +) diff --git a/test/print/memory-shared.wast b/test/print/memory-shared.wast new file mode 100644 index 000000000..daff79f22 --- /dev/null +++ b/test/print/memory-shared.wast @@ -0,0 +1,3 @@ +(module + (memory $0 23 256 shared) +) |