diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2023-12-15 00:29:01 -0600 |
---|---|---|
committer | Shravan Narayan <shravanrn@gmail.com> | 2024-01-02 08:35:49 -0600 |
commit | b85ecbec261ff7e84351505da3b2c45d9ea8d3c7 (patch) | |
tree | 8ff64733623679138d1548acd596a67ddcfe4fdf /.github/workflows | |
parent | 9fdd024249b6b181d98a4164700ca6ee09f970d9 (diff) | |
download | wabt-b85ecbec261ff7e84351505da3b2c45d9ea8d3c7.tar.gz wabt-b85ecbec261ff7e84351505da3b2c45d9ea8d3c7.tar.bz2 wabt-b85ecbec261ff7e84351505da3b2c45d9ea8d3c7.zip |
wasm2c: Add macro and tests to allow disabling stack exhaustion checks
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 29af531f..2b086ccf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -172,7 +172,7 @@ jobs: runs-on: ubuntu-latest env: USE_NINJA: "1" - WASM2C_CFLAGS: "-DWASM_RT_USE_MMAP=1 -DWASM_RT_SKIP_SIGNAL_RECOVERY=1 -DWASM2C_TEST_EMBEDDER_SIGNAL_HANDLING" + WASM2C_CFLAGS: "-DWASM_RT_USE_MMAP=1 -DWASM_RT_SKIP_SIGNAL_RECOVERY=1 -DWASM_RT_NONCONFORMING_UNCHECKED_STACK_EXHAUSTION=1 -DWASM2C_TEST_EMBEDDER_SIGNAL_HANDLING" steps: - uses: actions/setup-python@v1 with: @@ -182,5 +182,5 @@ jobs: submodules: true - run: sudo apt-get install ninja-build - run: make clang-debug - - name: tests (excluding memory64) - run: ./test/run-tests.py --exclude-dir memory64 + - name: tests (wasm2c tests excluding memory64) + run: ./test/run-tests.py wasm2c --exclude-dir memory64 |