summaryrefslogtreecommitdiff
path: root/test/dot_s
diff options
context:
space:
mode:
Diffstat (limited to 'test/dot_s')
-rw-r--r--test/dot_s/alias.wast1
-rw-r--r--test/dot_s/alternate-lcomm.wast1
-rw-r--r--test/dot_s/asm_const.wast1
-rw-r--r--test/dot_s/basics.wast1
-rw-r--r--test/dot_s/bcp-1.wast1
-rw-r--r--test/dot_s/data-offset-folding.wast1
-rw-r--r--test/dot_s/exit.wast1
-rw-r--r--test/dot_s/function-data-sections.wast1
-rw-r--r--test/dot_s/lcomm-in-text-segment.wast1
-rw-r--r--test/dot_s/macClangMetaData.wast1
-rw-r--r--test/dot_s/memops.wast1
-rw-r--r--test/dot_s/minimal.wast1
-rw-r--r--test/dot_s/permute.wast1
-rw-r--r--test/dot_s/relocation.wast1
-rw-r--r--test/dot_s/start_main0.wast1
-rw-r--r--test/dot_s/start_main2.wast1
-rw-r--r--test/dot_s/symbolic-offset.wast1
-rw-r--r--test/dot_s/visibilities.wast1
18 files changed, 18 insertions, 0 deletions
diff --git a/test/dot_s/alias.wast b/test/dot_s/alias.wast
index c1e63e885..451692cca 100644
--- a/test/dot_s/alias.wast
+++ b/test/dot_s/alias.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(export "__exit" $__exit)
(export "__needs_exit" $__needs_exit)
(func $__exit
diff --git a/test/dot_s/alternate-lcomm.wast b/test/dot_s/alternate-lcomm.wast
index 824a27ae6..6a5420861 100644
--- a/test/dot_s/alternate-lcomm.wast
+++ b/test/dot_s/alternate-lcomm.wast
@@ -1,4 +1,5 @@
(module
(memory 1)
+ (export "memory" memory)
)
;; METADATA: { "asmConsts": {},"staticBump": 8 }
diff --git a/test/dot_s/asm_const.wast b/test/dot_s/asm_const.wast
index 01db6592d..669b097c0 100644
--- a/test/dot_s/asm_const.wast
+++ b/test/dot_s/asm_const.wast
@@ -2,6 +2,7 @@
(memory 1
(segment 16 "{ Module.print(\"hello, world!\"); }\00")
)
+ (export "memory" memory)
(type $FUNCSIG$vi (func (param i32)))
(import $emscripten_asm_const_vi "env" "emscripten_asm_const_vi" (param i32))
(export "main" $main)
diff --git a/test/dot_s/basics.wast b/test/dot_s/basics.wast
index 3eab56fd4..8fc8c3d67 100644
--- a/test/dot_s/basics.wast
+++ b/test/dot_s/basics.wast
@@ -4,6 +4,7 @@
(segment 32 "vcq")
(segment 48 "\16\00\00\00")
)
+ (export "memory" memory)
(type $FUNCSIG$vi (func (param i32)))
(import $puts "env" "puts" (param i32))
(export "main" $main)
diff --git a/test/dot_s/bcp-1.wast b/test/dot_s/bcp-1.wast
index 9d6ccc22b..f558e06e0 100644
--- a/test/dot_s/bcp-1.wast
+++ b/test/dot_s/bcp-1.wast
@@ -8,6 +8,7 @@
(segment 96 "hi\00")
(segment 100 "\00\00\00\00")
)
+ (export "memory" memory)
(type $FUNCSIG_i (func (result i32)))
(type $FUNCSIG_ii (func (param i32) (result i32)))
(type $FUNCSIG$vi (func (param i32)))
diff --git a/test/dot_s/data-offset-folding.wast b/test/dot_s/data-offset-folding.wast
index 98c73e3b1..6047d7523 100644
--- a/test/dot_s/data-offset-folding.wast
+++ b/test/dot_s/data-offset-folding.wast
@@ -3,5 +3,6 @@
(segment 8 "\00\00\00\00")
(segment 416 "`\00\00\00")
)
+ (export "memory" memory)
)
;; METADATA: { "asmConsts": {},"staticBump": 419 }
diff --git a/test/dot_s/exit.wast b/test/dot_s/exit.wast
index df7632334..a0477c611 100644
--- a/test/dot_s/exit.wast
+++ b/test/dot_s/exit.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(type $FUNCSIG$vi (func (param i32)))
(import $exit "env" "exit" (param i32))
(export "main" $main)
diff --git a/test/dot_s/function-data-sections.wast b/test/dot_s/function-data-sections.wast
index e9ba95f43..6e7921673 100644
--- a/test/dot_s/function-data-sections.wast
+++ b/test/dot_s/function-data-sections.wast
@@ -4,6 +4,7 @@
(segment 12 "\01\00\00\00")
(segment 16 "33\13@")
)
+ (export "memory" memory)
(export "foo" $foo)
(export "bar" $bar)
(export "qux" $qux)
diff --git a/test/dot_s/lcomm-in-text-segment.wast b/test/dot_s/lcomm-in-text-segment.wast
index ac81f5898..5ede27c60 100644
--- a/test/dot_s/lcomm-in-text-segment.wast
+++ b/test/dot_s/lcomm-in-text-segment.wast
@@ -2,5 +2,6 @@
(memory 1
(segment 16 "\t\00\00\00")
)
+ (export "memory" memory)
)
;; METADATA: { "asmConsts": {},"staticBump": 19 }
diff --git a/test/dot_s/macClangMetaData.wast b/test/dot_s/macClangMetaData.wast
index e68a517e6..5257d05d0 100644
--- a/test/dot_s/macClangMetaData.wast
+++ b/test/dot_s/macClangMetaData.wast
@@ -2,6 +2,7 @@
(memory 1
(segment 16 "Hello, World!\00")
)
+ (export "memory" memory)
(type $FUNCSIG$ii (func (param i32) (result i32)))
(import $puts "env" "puts" (param i32) (result i32))
(export "main" $main)
diff --git a/test/dot_s/memops.wast b/test/dot_s/memops.wast
index a896ef517..b7a32aa0d 100644
--- a/test/dot_s/memops.wast
+++ b/test/dot_s/memops.wast
@@ -2,6 +2,7 @@
(memory 1
(segment 16 "{ Module.print(\"hello, world! \" + HEAP32[8>>2]); }\00")
)
+ (export "memory" memory)
(type $FUNCSIG$vi (func (param i32)))
(import $emscripten_asm_const_vi "env" "emscripten_asm_const_vi" (param i32))
(export "main" $main)
diff --git a/test/dot_s/minimal.wast b/test/dot_s/minimal.wast
index 769b4c5cc..2e456e617 100644
--- a/test/dot_s/minimal.wast
+++ b/test/dot_s/minimal.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(export "main" $main)
(func $main (result i32)
(return
diff --git a/test/dot_s/permute.wast b/test/dot_s/permute.wast
index 5f6add279..57fe2c468 100644
--- a/test/dot_s/permute.wast
+++ b/test/dot_s/permute.wast
@@ -2,5 +2,6 @@
(memory 1
(segment 16 "hE?\8ds\0e7\db[g\8f\955it\c4k\0b\e2\ef\bcld\e0\fd\8c\9e\86&~\d8\94\89+\c8\a4\c2\f2\fb\12\1cej\d99\b7\b3W\c6w\af\ae\caM>\92ub\96\84\b6\b0N\ec;q\11\f7\bf\e31\e6\a7\90\fc\03\e4\aa\d7\cc- \15\83DH\80r\fa\01X\eb:_\00A\cd\e9o`n\ac(\ad\ba0\dcyS#\f4$\"\82\7f}\8e\f6\93L\'\bb\bdZ\ed4\18\f3\c0\cf\ff\a3\f8\07\05\9c\d3\0f\a0\06m%\\\f9^B<\e7\b1\17\98]\0c\dd\c5\f5p\e5\fezJ\ab,F\a5@\08R\85!\b8\1a\ce\d5\04\nI\a6\d1\9f\8a\c9\a9|\97\9aG\be8Y\8b\c1\1b\d4\ea\b9\19\14\9b\9163\d0\1d\d2\df=C\1f\0dc\e1\c7QUv\02\b5aK\b4\tV\c3x\e8\a1\1e\81\de/{\da\d6Pf\10T\f0)\88\16\ee\a8\9d\f1\cbO*\b2\99\132\87.\a2")
)
+ (export "memory" memory)
)
;; METADATA: { "asmConsts": {},"staticBump": 271 }
diff --git a/test/dot_s/relocation.wast b/test/dot_s/relocation.wast
index eb7c73119..c985ff186 100644
--- a/test/dot_s/relocation.wast
+++ b/test/dot_s/relocation.wast
@@ -3,6 +3,7 @@
(segment 8 "\0c\00\00\00")
(segment 12 "\08\00\00\00")
)
+ (export "memory" memory)
(export "main" $main)
(func $main (result i32)
(local $$0 i32)
diff --git a/test/dot_s/start_main0.wast b/test/dot_s/start_main0.wast
index 0f19222de..04fcb858c 100644
--- a/test/dot_s/start_main0.wast
+++ b/test/dot_s/start_main0.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(start $_start)
(export "main" $main)
(export "_start" $_start)
diff --git a/test/dot_s/start_main2.wast b/test/dot_s/start_main2.wast
index 4d40884b1..5dadb8b6e 100644
--- a/test/dot_s/start_main2.wast
+++ b/test/dot_s/start_main2.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(start $_start)
(export "main" $main)
(export "_start" $_start)
diff --git a/test/dot_s/symbolic-offset.wast b/test/dot_s/symbolic-offset.wast
index ffc7dbb01..9fc46e4c5 100644
--- a/test/dot_s/symbolic-offset.wast
+++ b/test/dot_s/symbolic-offset.wast
@@ -2,6 +2,7 @@
(memory 1
(segment 8 "\01\00\00\00\00\00\00\00\00\00\00\00")
)
+ (export "memory" memory)
(export "f" $f)
(func $f (param $$0 i32) (param $$1 i32)
(i32.store offset=12
diff --git a/test/dot_s/visibilities.wast b/test/dot_s/visibilities.wast
index f2ae9e648..7d420d9fd 100644
--- a/test/dot_s/visibilities.wast
+++ b/test/dot_s/visibilities.wast
@@ -1,5 +1,6 @@
(module
(memory 0)
+ (export "memory" memory)
(export "foo" $foo)
(export "bar" $bar)
(export "qux" $qux)