diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/duplicated_names.wasm | bin | 0 -> 64 bytes | |||
-rw-r--r-- | test/duplicated_names.wasm.fromBinary | 13 | ||||
-rw-r--r-- | test/duplicated_names_collision.wasm | bin | 0 -> 66 bytes | |||
-rw-r--r-- | test/duplicated_names_collision.wasm.fromBinary | 13 |
4 files changed, 26 insertions, 0 deletions
diff --git a/test/duplicated_names.wasm b/test/duplicated_names.wasm Binary files differnew file mode 100644 index 000000000..33dfb229f --- /dev/null +++ b/test/duplicated_names.wasm diff --git a/test/duplicated_names.wasm.fromBinary b/test/duplicated_names.wasm.fromBinary new file mode 100644 index 000000000..90eedbaa5 --- /dev/null +++ b/test/duplicated_names.wasm.fromBinary @@ -0,0 +1,13 @@ +(module + (type $0 (func (result i32))) + (func $foo (; 0 ;) (type $0) (result i32) + (i32.const 0) + ) + (func $foo.1 (; 1 ;) (type $0) (result i32) + (i32.const 1) + ) + (func $foo.2 (; 2 ;) (type $0) (result i32) + (i32.const 2) + ) +) + diff --git a/test/duplicated_names_collision.wasm b/test/duplicated_names_collision.wasm Binary files differnew file mode 100644 index 000000000..b742ce07a --- /dev/null +++ b/test/duplicated_names_collision.wasm diff --git a/test/duplicated_names_collision.wasm.fromBinary b/test/duplicated_names_collision.wasm.fromBinary new file mode 100644 index 000000000..a3ab6a1aa --- /dev/null +++ b/test/duplicated_names_collision.wasm.fromBinary @@ -0,0 +1,13 @@ +(module + (type $0 (func (result i32))) + (func $foo (; 0 ;) (type $0) (result i32) + (i32.const 0) + ) + (func $foo.1 (; 1 ;) (type $0) (result i32) + (i32.const 1) + ) + (func $foo.1.1 (; 2 ;) (type $0) (result i32) + (i32.const 2) + ) +) + |