From 0024c8bdd28f701d57e49e65d38b28aad0594299 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Wed, 13 Dec 2023 10:53:50 -0800 Subject: [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. --- test/lit/basic/fn_prolog_epilog.debugInfo.wast | 66 ++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 test/lit/basic/fn_prolog_epilog.debugInfo.wast (limited to 'test/lit/basic/fn_prolog_epilog.debugInfo.wast') diff --git a/test/lit/basic/fn_prolog_epilog.debugInfo.wast b/test/lit/basic/fn_prolog_epilog.debugInfo.wast new file mode 100644 index 000000000..636c3346e --- /dev/null +++ b/test/lit/basic/fn_prolog_epilog.debugInfo.wast @@ -0,0 +1,66 @@ +;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited. + +;; RUN: wasm-opt %s -all -o %t.text.wast -g -S +;; RUN: wasm-as %s -all -g -o %t.wasm +;; RUN: wasm-dis %t.wasm -all -o %t.bin.wast +;; RUN: wasm-as %s -all -o %t.nodebug.wasm +;; RUN: wasm-dis %t.nodebug.wasm -all -o %t.bin.nodebug.wast +;; RUN: cat %t.text.wast | filecheck %s --check-prefix=CHECK-TEXT +;; RUN: cat %t.bin.wast | filecheck %s --check-prefix=CHECK-BIN +;; RUN: cat %t.bin.nodebug.wast | filecheck %s --check-prefix=CHECK-BIN-NODEBUG + +(module + ;;@ src.cpp:1:1 + (func + (nop) + ;;@ src.cpp:2:1 + (block $l0 + ;;@ src.cpp:2:2 + (block $l1 + (br $l1) + ) + ) + ;;@ src.cpp:3:1 + (return) + ;;@ src.cpp:3:2 + ) +) +;; CHECK-TEXT: (type $0 (func)) + +;; CHECK-TEXT: (func $0 (type $0) +;; CHECK-TEXT-NEXT: (nop) +;; CHECK-TEXT-NEXT: ;;@ src.cpp:2:1 +;; CHECK-TEXT-NEXT: (block $l0 +;; CHECK-TEXT-NEXT: ;;@ src.cpp:2:2 +;; CHECK-TEXT-NEXT: (block $l1 +;; CHECK-TEXT-NEXT: (br $l1) +;; CHECK-TEXT-NEXT: ) +;; CHECK-TEXT-NEXT: ) +;; CHECK-TEXT-NEXT: ;;@ src.cpp:3:1 +;; CHECK-TEXT-NEXT: (return) +;; CHECK-TEXT-NEXT: ;;@ src.cpp:3:2 +;; CHECK-TEXT-NEXT: ) + +;; CHECK-BIN: (type $0 (func)) + +;; CHECK-BIN: (func $0 (type $0) +;; CHECK-BIN-NEXT: (nop) +;; CHECK-BIN-NEXT: (block $label$1 +;; CHECK-BIN-NEXT: (block $label$2 +;; CHECK-BIN-NEXT: (br $label$2) +;; CHECK-BIN-NEXT: ) +;; CHECK-BIN-NEXT: ) +;; CHECK-BIN-NEXT: (return) +;; CHECK-BIN-NEXT: ) + +;; CHECK-BIN-NODEBUG: (type $0 (func)) + +;; CHECK-BIN-NODEBUG: (func $0 (type $0) +;; CHECK-BIN-NODEBUG-NEXT: (nop) +;; CHECK-BIN-NODEBUG-NEXT: (block $label$1 +;; CHECK-BIN-NODEBUG-NEXT: (block $label$2 +;; CHECK-BIN-NODEBUG-NEXT: (br $label$2) +;; CHECK-BIN-NODEBUG-NEXT: ) +;; CHECK-BIN-NODEBUG-NEXT: ) +;; CHECK-BIN-NODEBUG-NEXT: (return) +;; CHECK-BIN-NODEBUG-NEXT: ) -- cgit v1.2.3