- Remove "--enable-reference-types" and "--enable-bulk-memory" for wat2wasm to support finished proposals. - Ignore invalid module in the thread spec repo: ``` wast ;; my_elem.wast (module (table $t 10 funcref) (func $f) (elem $t (i32.const 0) 0) (elem $t (i32.const 0) $f $f) (elem $t (offset (i32.const 0)) $f $f) ) ``` run with reference interpreter under spec/interpreter: ``` shell $ ./wasm ../../../my_elem.wast ../../../my_elem.wast:5.9-5.11: syntax error: duplicate elem segment $t ``` - use a specific commit instead of the latest commit on the thread spec repo
This commit is contained in:
4
.github/workflows/spec_test.yml
vendored
4
.github/workflows/spec_test.yml
vendored
@ -11,6 +11,8 @@ on:
|
||||
- "core/shared/**"
|
||||
- "wamr-compiler/**"
|
||||
- "product-mini/**"
|
||||
- "tests/wamr-test-suites/spec-test-script/**"
|
||||
- "tests/wamr-test-suites/test_wamr.sh"
|
||||
# will be triggered on push events
|
||||
push:
|
||||
paths:
|
||||
@ -19,6 +21,8 @@ on:
|
||||
- "core/shared/**"
|
||||
- "wamr-compiler/**"
|
||||
- "product-mini/**"
|
||||
- "tests/wamr-test-suites/spec-test-script/**"
|
||||
- "tests/wamr-test-suites/test_wamr.sh"
|
||||
# allow to be triggered manually
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user