summaryrefslogtreecommitdiff
path: root/test/print
diff options
context:
space:
mode:
Diffstat (limited to 'test/print')
-rw-r--r--test/print/memory-import-shared.minified.txt1
-rw-r--r--test/print/memory-import-shared.txt3
-rw-r--r--test/print/memory-import-shared.wast3
-rw-r--r--test/print/memory-notshared.minified.txt2
-rw-r--r--test/print/memory-notshared.txt3
-rw-r--r--test/print/memory-notshared.wast3
-rw-r--r--test/print/memory-shared.minified.txt2
-rw-r--r--test/print/memory-shared.txt3
-rw-r--r--test/print/memory-shared.wast3
9 files changed, 23 insertions, 0 deletions
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)
+)