Files
wasmer/tests/compilers/main.rs
2020-06-22 17:11:02 -07:00

20 lines
431 B
Rust

#![cfg(feature = "compiler")]
//! 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.
mod functions;
mod imports;
mod middlewares;
mod multi_value_imports;
mod serialize;
mod traps;
mod utils;
mod wasi;
mod wast;
pub use crate::utils::get_compiler;
pub use crate::wasi::run_wasi;
pub use crate::wast::run_wast;