wasm-micro-runtime/tests/wamr-test-suites/spec-test-script
YAMAMOTO Takashi 908838a5b5
build-scripts/build_llvm.py: bump to llvm 18 (#4259)
* build-scripts/build_llvm.py: bump to llvm 18

cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/4210

why not 20?
because, as of writing this, 19 is the latest released version for
the xtensa fork of llvm: https://github.com/espressif/llvm-project

why not 19?
because of a bug in the xtensa fork of llvm:
https://github.com/espressif/llvm-project/issues/112

while we can use different versions for different targets,
it's nicer to use the same version everywhere when possible.

* spec-test-script/runtest.py: --size-level=0 for x86-64

with the recent version of LLVM, wamrc --size-level=1 often
generates R_X86_64_32S relocations which fail on load with
the infamous error:

"relocation truncated to fit R_X86_64_32S failed"

it seems that these relocations are often for jump tables.

this commit workarounds it with --size-level=0.

an alternative is to disable jump tables. (although it seems that
jump tables are not the only source of these relocations.)

cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/3035

it might be better to do this in wamrc itself. however, currently
target info is not available there in case of native compilation.
related: https://github.com/bytecodealliance/wasm-micro-runtime/issues/3356

* wamr-compiler: size_level=0 for sgx mode

cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/3035
2025-05-09 17:14:02 +08:00
..
all.py test: temporarily skip 'skip-stack-guard-page' test case until issue is resolved 2025-03-26 15:14:12 +08:00
all.sh Enhance spec test workflow to support x86_32 target (#787) 2021-10-15 17:05:07 +08:00
CHANGES Import test suites to test spec cases (#736) 2021-09-09 12:49:46 +08:00
collect_coverage.sh Separate app-manager and app-framework from WAMR (#3129) 2024-02-20 18:12:36 +08:00
exception_handling.patch Allow missing imports in wasm loader and report error in wasm instantiation instead (#3539) 2024-06-25 10:04:39 +08:00
gc_ignore_cases.patch Synchronize the GC spec tests to the commit from December 9. 2024. (#4022) 2025-01-20 09:41:47 +08:00
gc_nuttx_tail_call.patch Synchronize the GC spec tests to the commit from December 9. 2024. (#4022) 2025-01-20 09:41:47 +08:00
ignore_cases.patch Enable shrunk memory by default and add related configurations (#4008) 2025-01-13 07:09:04 +08:00
memory64_ignore_cases.patch Support table64 extension in classic-interp and AOT running modes (#3811) 2024-10-11 21:14:56 +08:00
multi_memory_ignore_cases.patch Add support for multi-memory proposal in classic interpreter (#3742) 2024-08-21 12:22:23 +08:00
multi_module_aot_ignore_cases.patch wamr-test-suites: Enable AOT multi-module spec tests (#3450) 2024-05-21 12:10:47 +08:00
multi_module_ignore_cases.patch Enable shrunk memory by default and add related configurations (#4008) 2025-01-13 07:09:04 +08:00
runtest.py build-scripts/build_llvm.py: bump to llvm 18 (#4259) 2025-05-09 17:14:02 +08:00
simd_ignore_cases.patch Update spec test to latest commit (#3293) 2024-05-17 10:40:47 +08:00
thread_proposal_fix_atomic_case.patch Fix threads spec test issues (#1586) 2022-10-13 13:53:09 +08:00
thread_proposal_ignore_cases.patch Implement GC (Garbage Collection) feature for interpreter, AOT and LLVM-JIT (#3125) 2024-02-06 20:47:11 +08:00
thread_proposal_remove_memory64_flag_case.patch Implement Memory64 support for AOT (#3362) 2024-05-13 11:03:38 +08:00