mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 13:18:20 +00:00
14 lines
312 B
Rust
14 lines
312 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;
|