Name Date Size #Lines LOC

..--

Inputs/H--1,9531,931

01-wasm-compare-logical-elements.testH A D14-Mar-20244.4 KiB10794

01-wasm-print-basic-details.testH A D14-Mar-20245.7 KiB121113

01-wasm-select-logical-elements.testH A D14-Mar-20243 KiB7768

02-wasm-logical-lines.testH A D14-Mar-20243.3 KiB7568

03-wasm-incorrect-lexical-scope-typedef.testH A D14-Mar-20245.8 KiB136124

04-wasm-missing-nested-enumerators.testH A D14-Mar-20245.4 KiB131117

05-wasm-incorrect-lexical-scope-variable.testH A D14-Mar-20245.2 KiB115104

06-wasm-full-logical-view.testH A D14-Mar-20249.6 KiB159152

README.txtH A D14-Mar-20241.3 KiB2923

README.txt

1Notes:
2------
3As we should avoid committing binaries (.wasm) to be used in tests,
4instead we provide the '.cpp' source files and the '.s' files.
5
6- For the tests, only the '.s' files are required.
7- We use the target 'wasm32' as the 'wasm64' is not standardized yet.
8
9How to generate .s from .cpp
10----------------------------
11Use clang to generate the '.s'.
12
13  clang --target=wasm32 -S -g Inputs/hello-world.cpp -o Inputs/hello-world-clang.s
14  clang --target=wasm32 -S -g Inputs/pr-43860.cpp    -o Inputs/pr-43860-clang.s
15  clang --target=wasm32 -S -g Inputs/pr-44884.cpp    -o Inputs/pr-44884-clang.s
16  clang --target=wasm32 -S -g Inputs/pr-46466.cpp    -o Inputs/pr-46466-clang.s
17  clang --target=wasm32 -S -g Inputs/test.cpp        -o Inputs/test-clang.s
18
19How to generate .o from .s
20--------------------------------
21Each test executes one of the following commands in order to generate
22the binary '.wasm' used by that specific test:
23
24  llvm-mc -arch=wasm32 -filetype=obj %p/Inputs/hello-world-clang.s -o hello-world-clang.o
25  llvm-mc -arch=wasm32 -filetype=obj %p/Inputs/pr-43860-clang.s    -o pr-43860-clang.o
26  llvm-mc -arch=wasm32 -filetype=obj %p/Inputs/pr-44884-clang.s    -o pr-44884-clang.o
27  llvm-mc -arch=wasm32 -filetype=obj %p/Inputs/pr-46466-clang.s    -o pr-46466-clang.o
28  llvm-mc -arch=wasm32 -filetype=obj %p/Inputs/test-clang.s        -o test-clang.o
29