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.
6 lines
189 B
Rust
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(())
|
|
}
|