Delete stray test

This commit is contained in:
Alex Crichton
2019-05-02 11:38:26 -07:00
parent 8d79795d70
commit 0656dec456

View File

@@ -74,17 +74,3 @@ pub fn acosf(x: f32) -> f32 {
w = r(z) * s + c;
2. * (df + w)
}
#[cfg(test)]
mod tests {
#[test]
fn acosf() {
extern {
fn acosf(x: f32) -> f32;
}
unsafe {
crate::_eqf(super::acosf(1.0), acosf(1.0)).unwrap();
}
}
// shared::f32!("musl", acosf);
}