Files
wasmer/tests/compilers/main.rs
Nick Lewycky cbc7dc8454 Add multi-value-import tests.
Also fix implementation of trampolines in LLVM.
2020-06-06 21:02:10 -07:00

10 lines
247 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]
mod macros;
mod imports;
mod multi_value_imports;
mod wast;