This lib contains tests for the core WebAssembly semantics, as described in [Semantics.md](https://github.com/WebAssembly/design/blob/master/Semantics.md) and specified by the [spec interpreter](https://github.com/WebAssembly/spec/blob/master/interpreter/spec).
SIMD wast specs are also added here.
These files should be a direct copy of the original [WebAssembly spec tests](/test/core).
Tests are written in the [S-Expression script format](https://github.com/WebAssembly/spec/blob/master/interpreter/README.md#s-expression-syntax) defined by the interpreter.
## Version
The spectests were last updated at `WebAssembly/spec` commit `a221f2574d7106e92cf8abaf05d5bb1131b19d76`.
- [x]`assert_invalid`_fully implemented_ (it should not require validation to be performed separate from compilation)
- [x]`assert_malformed`_fully implemented_
- [ ]`assert_uninstantiable`_not implemented, no usages found_
- [x]`assert_exhaustion`_fully implemented_
- [x]`register`_fully implemented_
- [x]`perform_action`_fully implemented_
### Covered spec tests
See `tests/excludes.txt` for current coverage.
### Specific non-supported cases
There are some cases that we decided to skip for now to accelerate the release schedule:
-`SKIP_CALL_INDIRECT_TYPE_MISMATCH`: we implemented traps in a fast way. We haven't yet covered the type mismatch on `call_indirect`. Specs affected:
-`call_indirect.wast`
-`SKIP_CALL_UNDEFINED_ELEMENT`
Tables are imported into every spec module, even for modules that don't expect it. We need to figure out a way to prevent importing of objects that are not explicitly imported into the module.
Currently `cranelift_wasm::ModuleEnvironment` does not provide `declare_table_import`, etc. so there is no meaningful way of fixing this yet.
-`call_indirect.wast`
-`SKIP_SHARED_TABLE` [elem.wast]
Currently sharing tables between instances/modules does not work. Below are some of the reasons it is hard to achieve:
- Rust naturally prevents such because of the possibility of race conditions
-`ImportObject` is just a wrapper, what we really care about is references to its content.
-`Instance::new` contains a mutation points, the part where after getting the object (memory or table) we push values to it
`table[table_element_index] = func_addr`
- Instance has its own created memories and tables and references to them must outlive `Instance::new()`