Files
wasmtime/cranelift/tests/filetests.rs
bjorn3 54f9587569 Don't use libtest harness for filetests (#4655)
We are using our own test harness for filetests and embedding it in
libtest isn't useful. It only hides test output until the end and
results in unnecessary noise.
2022-08-10 13:48:15 -07:00

6 lines
189 B
Rust

fn main() -> anyhow::Result<()> {
// Run all the filetests in the following directories.
cranelift_filetests::run(false, false, &["filetests".into(), "docs".into()])?;
Ok(())
}