* Update the `*.wast` runner to use the `wasmtime` API This commit migrates the `wasmtime-wast` crate, which executes `*.wast` test suites, to use the `wasmtime` crate exclusively instead of the raw support provided by the `wasmtime-*` family of crates. The primary motivation for this change is to use `*.wast` test to test the support for interface types, but interface types is only being added in the `wasmtime` crate for now rather than all throughout the core crates. This means that without this transition it's much more difficult to write tests for wasm interface types! A secondary motivation for this is that it's testing the support we provide to users through the `wasmtime` crate, since that's the expectation of what most users would use rather than the raw `wasmtime-*` crates. * Run rustfmt * Fix the multi example * Handle v128 values in the `wasmtime` crate Ensure that we allocate 128-bit stack slots instead of 64-bit stack slots. * Update to master * Add comment
36 lines
1.3 KiB
Rust
36 lines
1.3 KiB
Rust
use std::path::Path;
|
|
use wasmtime::{Config, Engine, HostRef, Store};
|
|
use wasmtime_environ::settings;
|
|
use wasmtime_environ::settings::Configurable;
|
|
use wasmtime_jit::{CompilationStrategy, Features};
|
|
use wasmtime_wast::WastContext;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/wast_testsuite_tests.rs"));
|
|
|
|
// Each of the tests included from `wast_testsuite_tests` will call this
|
|
// function which actually executes the `wast` test suite given the `strategy`
|
|
// to compile it.
|
|
fn run_wast(wast: &str, strategy: CompilationStrategy) -> anyhow::Result<()> {
|
|
let wast = Path::new(wast);
|
|
let features = Features {
|
|
simd: wast.iter().any(|s| s == "simd"),
|
|
multi_value: wast.iter().any(|s| s == "multi-value"),
|
|
..Default::default()
|
|
};
|
|
|
|
let mut flag_builder = settings::builder();
|
|
flag_builder.enable("enable_verifier").unwrap();
|
|
flag_builder.enable("avoid_div_traps").unwrap();
|
|
flag_builder.enable("enable_simd").unwrap();
|
|
|
|
let mut cfg = Config::new();
|
|
cfg.strategy(strategy)
|
|
.flags(settings::Flags::new(flag_builder))
|
|
.features(features);
|
|
let store = HostRef::new(Store::new(&HostRef::new(Engine::new(&cfg))));
|
|
let mut wast_context = WastContext::new(store);
|
|
wast_context.register_spectest()?;
|
|
wast_context.run_file(wast)?;
|
|
Ok(())
|
|
}
|