Files
rust/library/compiler-builtins/libm-test/tests/z_extensive/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
279 B
Rust
Raw Normal View History

//! `main` is just a wrapper to handle configuration.
#[cfg(not(feature = "build-mpfr"))]
fn main() {
eprintln!("multiprecision not enabled; skipping extensive tests");
}
#[cfg(feature = "build-mpfr")]
mod run;
#[cfg(feature = "build-mpfr")]
fn main() {
run::run();
}