about summary refs log tree commit diff
path: root/library/compiler-builtins/libm-test/tests/z_extensive/main.rs
blob: 5448cb6eaa5bd82eeffd56b6c27107966d805872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `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();
}