Files
wasmtime/crates/wasi-common/tests/wasm_tests/main.rs
Dan Gohman 22641de629 Initial reorg.
This is largely the same as #305, but updated for the current tree.
2019-11-08 06:35:40 -08:00

17 lines
267 B
Rust

#![cfg(feature = "wasm_tests")]
mod runtime;
mod utils;
use std::sync::Once;
static LOG_INIT: Once = Once::new();
fn setup_log() {
LOG_INIT.call_once(|| {
pretty_env_logger::init();
})
}
include!(concat!(env!("OUT_DIR"), "/wasi_misc_tests.rs"));