diff options
author | Heejin Ahn <aheejin@gmail.com> | 2023-12-13 10:53:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 10:53:50 -0800 |
commit | 0024c8bdd28f701d57e49e65d38b28aad0594299 (patch) | |
tree | 19b9eb323836843d147dedf40495042edcf9404f /test/simd64.wast.fromBinary | |
parent | 9e636855b582d1499a87fb73f55d85102ce95a58 (diff) | |
download | binaryen-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/simd64.wast.fromBinary')
-rw-r--r-- | test/simd64.wast.fromBinary | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/test/simd64.wast.fromBinary b/test/simd64.wast.fromBinary deleted file mode 100644 index 27fa123b0..000000000 --- a/test/simd64.wast.fromBinary +++ /dev/null @@ -1,77 +0,0 @@ -(module - (type $0 (func (param i64) (result v128))) - (type $1 (func (param i64 v128))) - (memory $0 i64 1 1) - (func $v128.load (type $0) (param $0 i64) (result v128) - (v128.load - (local.get $0) - ) - ) - (func $v128.store (type $1) (param $0 i64) (param $1 v128) - (v128.store - (local.get $0) - (local.get $1) - ) - ) - (func $v128.load8_splat (type $0) (param $0 i64) (result v128) - (v128.load8_splat - (local.get $0) - ) - ) - (func $v128.load16_splat (type $0) (param $0 i64) (result v128) - (v128.load16_splat - (local.get $0) - ) - ) - (func $v128.load32_splat (type $0) (param $0 i64) (result v128) - (v128.load32_splat - (local.get $0) - ) - ) - (func $v128.load64_splat (type $0) (param $0 i64) (result v128) - (v128.load64_splat - (local.get $0) - ) - ) - (func $v128.load8x8_u (type $0) (param $0 i64) (result v128) - (v128.load8x8_u - (local.get $0) - ) - ) - (func $v128.load8x8_s (type $0) (param $0 i64) (result v128) - (v128.load8x8_s - (local.get $0) - ) - ) - (func $v128.load16x4_s (type $0) (param $0 i64) (result v128) - (v128.load16x4_s - (local.get $0) - ) - ) - (func $v128.load16x4_u (type $0) (param $0 i64) (result v128) - (v128.load16x4_u - (local.get $0) - ) - ) - (func $v128.load32x2_s (type $0) (param $0 i64) (result v128) - (v128.load32x2_s - (local.get $0) - ) - ) - (func $v128.load32x2_u (type $0) (param $0 i64) (result v128) - (v128.load32x2_u - (local.get $0) - ) - ) - (func $v128.load32_zero (type $0) (param $0 i64) (result v128) - (v128.load32_zero - (local.get $0) - ) - ) - (func $v128.load64_zero (type $0) (param $0 i64) (result v128) - (v128.load64_zero - (local.get $0) - ) - ) -) - |