Files
wasmtime/tests/misc_tests.rs

15 lines
239 B
Rust

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"), "/misc_testsuite_tests.rs"));