Files
wasmer/tests/compilers/main.rs
Anbang Wen b32e8d92c1 add a compiler test to check for deterministic
This is to test #2173, the empty test always pass while the table one
fails sometimes.
2021-11-22 15:49:11 +00:00

25 lines
561 B
Rust

//! This test suite does all the tests that involve any compiler
//! implementation, such as: singlepass, cranelift or llvm depending
//! on what's available on the target.
#[macro_use]
extern crate compiler_test_derive;
mod config;
mod deterministic;
mod imports;
mod issues;
mod metering;
mod middlewares;
// mod multi_value_imports;
mod native_functions;
mod serialize;
mod traps;
mod wasi;
mod wast;
pub use crate::config::{Compiler, Config, Engine};
pub use crate::wasi::run_wasi;
pub use crate::wast::run_wast;
pub use wasmer_wast::WasiFileSystemKind;