wasmer/tests/custom
2020-05-11 12:35:38 -07:00
..
call-indirect-spilled-stack.wast Second part of the refactor 2020-04-15 16:31:05 -07:00
fac.wast Second part of the refactor 2020-04-15 16:31:05 -07:00
int-extend-garbage.wast Apply review suggestion 2020-05-12 03:23:50 +08:00
multiple-traps.wast Update tests/custom/multiple-traps.wast 2020-04-15 17:47:31 -07:00
nan-canonicalization.wast Added custom tests to the infrastructure 2020-05-11 12:35:38 -07:00
README.md Added README to custom wast tests dir 2020-04-16 15:30:53 -07:00
singlepass-r10-overwrite.wast Add test for issue #1409. 2020-04-30 00:05:45 +08:00
stack-overflow.wast Added custom tests to the infrastructure 2020-05-11 12:35:38 -07:00

Custom wast tests

In this directory we have created wast tests for differentcases where we want to test other scenarios than the ones offered by the standard WebAssembly spectests.

NaN canonicalization: nan-canonicalization.wast

The tests are covered by the .

This is an extra set of tests that assure that operations with NaNs are deterministic regarless of the environment/chipset where it executes in.

Call Indirect Spilled Stack: call-indirect-spilledd-stack.wast

We had an issue occuring that was making singlepass not working properly on the WebAssembly benchmark: https://00f.net/2019/10/22/updated-webassembly-benchmark/.

This is a test case to ensure it doesn't reproduce again in the future.

Multiple Traps: multiple-traps.wast

This is a test assuring functions that trap can be called multiple times.

Fac: fac.wast

This is a simple factorial program.