diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/empty.asm.js | 4 | ||||
-rw-r--r-- | test/empty.fromasm | 4 | ||||
-rw-r--r-- | test/empty.fromasm.imprecise | 4 | ||||
-rw-r--r-- | test/empty.fromasm.imprecise.no-opts | 4 | ||||
-rw-r--r-- | test/empty.fromasm.no-opts | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/test/empty.asm.js b/test/empty.asm.js new file mode 100644 index 000000000..94fa6bb38 --- /dev/null +++ b/test/empty.asm.js @@ -0,0 +1,4 @@ +function EmptyModule() { + 'use asm'; + return {}; +} diff --git a/test/empty.fromasm b/test/empty.fromasm new file mode 100644 index 000000000..939cbb87c --- /dev/null +++ b/test/empty.fromasm @@ -0,0 +1,4 @@ +(module + (memory 256 256) + (export "memory" memory) +) diff --git a/test/empty.fromasm.imprecise b/test/empty.fromasm.imprecise new file mode 100644 index 000000000..939cbb87c --- /dev/null +++ b/test/empty.fromasm.imprecise @@ -0,0 +1,4 @@ +(module + (memory 256 256) + (export "memory" memory) +) diff --git a/test/empty.fromasm.imprecise.no-opts b/test/empty.fromasm.imprecise.no-opts new file mode 100644 index 000000000..939cbb87c --- /dev/null +++ b/test/empty.fromasm.imprecise.no-opts @@ -0,0 +1,4 @@ +(module + (memory 256 256) + (export "memory" memory) +) diff --git a/test/empty.fromasm.no-opts b/test/empty.fromasm.no-opts new file mode 100644 index 000000000..939cbb87c --- /dev/null +++ b/test/empty.fromasm.no-opts @@ -0,0 +1,4 @@ +(module + (memory 256 256) + (export "memory" memory) +) |