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

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();
}