summaryrefslogtreecommitdiff
path: root/test/subtypes.wast.fromBinary.noDebugInfo
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2023-12-13 10:53:50 -0800
committerGitHub <noreply@github.com>2023-12-13 10:53:50 -0800
commit0024c8bdd28f701d57e49e65d38b28aad0594299 (patch)
tree19b9eb323836843d147dedf40495042edcf9404f /test/subtypes.wast.fromBinary.noDebugInfo
parent9e636855b582d1499a87fb73f55d85102ce95a58 (diff)
downloadbinaryen-0024c8bdd28f701d57e49e65d38b28aad0594299.tar.gz
binaryen-0024c8bdd28f701d57e49e65d38b28aad0594299.tar.bz2
binaryen-0024c8bdd28f701d57e49e65d38b28aad0594299.zip
[test] Port tests in test/ to test/lit/basic/ (#6160)
This ports all tests from `test/` to `test/lit/basic/`. The set of commands and `CHECK` lines used are the same as the ones in #6159. Now we use `lit` to test these, this also deletes all `.wast`, `.wast.from-wast`, `.wast.fromBinary`, and `.wast.fromBinary.noDebugInfo` files from `test/` and all related test routines from the python scripts. All `CHECK` lines are generated by `update_lit_checks.py --all-items`. This also deletes these three multi-memory tests in `test/lit/`, because they seem to contain the same code with the ones in `test/`, which have been ported to `test/lit/basic/` along with other tests. - `test/lit/multi-memories-atomics64.wast` - `test/lit/multi-memories-basics.wast` - `test/lit/multi-memories-simd.wast` This also adds newlines between `(func`s in case there are none to make `CHECK` lines easy to view, and removes some extra existing newlines here and there.
Diffstat (limited to 'test/subtypes.wast.fromBinary.noDebugInfo')
-rw-r--r--test/subtypes.wast.fromBinary.noDebugInfo41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/subtypes.wast.fromBinary.noDebugInfo b/test/subtypes.wast.fromBinary.noDebugInfo
deleted file mode 100644
index 29e575555..000000000
--- a/test/subtypes.wast.fromBinary.noDebugInfo
+++ /dev/null
@@ -1,41 +0,0 @@
-(module
- (type $0 (sub (struct (field (ref $0)))))
- (type $1 (sub $0 (struct (field (ref $1)) (field (ref $1)))))
- (type $2 (array i32))
- (type $3 (sub (struct (field (ref any)))))
- (type $4 (sub $3 (struct (field (ref i31)))))
- (type $5 (func (param (ref $2) (ref null $2))))
- (type $6 (sub (array (ref any))))
- (type $7 (sub $6 (array (ref i31))))
- (type $8 (func (param (ref $7) (ref $6))))
- (type $9 (func (param (ref $4) (ref $3))))
- (type $10 (sub $4 (struct (field (ref i31)) (field (ref any)))))
- (type $11 (func (param (ref $4) (ref $10))))
- (type $12 (func (param (ref $0) (ref $1))))
- (func $0 (type $5) (param $0 (ref $2)) (param $1 (ref null $2))
- (local.set $1
- (local.get $0)
- )
- )
- (func $1 (type $8) (param $0 (ref $7)) (param $1 (ref $6))
- (local.set $1
- (local.get $0)
- )
- )
- (func $2 (type $9) (param $0 (ref $4)) (param $1 (ref $3))
- (local.set $1
- (local.get $0)
- )
- )
- (func $3 (type $11) (param $0 (ref $4)) (param $1 (ref $10))
- (local.set $0
- (local.get $1)
- )
- )
- (func $4 (type $12) (param $0 (ref $0)) (param $1 (ref $1))
- (local.set $0
- (local.get $1)
- )
- )
-)
-