add more commented out tests

This commit is contained in:
Jorge Aparicio
2018-07-12 18:26:39 -05:00
parent e7ecbdf3e2
commit 333d27ab6a

View File

@@ -560,19 +560,33 @@ fn main() -> Result<(), Box<Error>> {
// With signature `fn(f32) -> f32` // With signature `fn(f32) -> f32`
f32_f32! { f32_f32! {
// acosf,
// floorf,
// truncf
// asinf,
// atanf,
// cbrtf,
// ceilf,
// cosf, // cosf,
// coshf,
// exp2f, // exp2f,
// expf, // expf,
// fdimf,
// log10f, // log10f,
// log2f, // log2f,
// roundf, // roundf,
// sinf, // sinf,
// sinhf,
// tanf,
// tanhf,
fabsf, fabsf,
sqrtf, sqrtf,
} }
// With signature `fn(f32, f32) -> f32` // With signature `fn(f32, f32) -> f32`
f32f32_f32! { f32f32_f32! {
// atan2f,
// hypotf,
fmodf, fmodf,
powf, powf,
} }
@@ -593,11 +607,13 @@ f64_f64! {
// asin, // asin,
// atan, // atan,
// cbrt, // cbrt,
// ceil,
// cos, // cos,
// cosh, // cosh,
// exp, // exp,
// exp2, // exp2,
// expm1, // expm1,
// floor,
// log, // log,
// log10, // log10,
// log1p, // log1p,
@@ -605,14 +621,17 @@ f64_f64! {
// round, // round,
// sin, // sin,
// sinh, // sinh,
// sqrt,
// tan, // tan,
// tanh, // tanh,
// trunc,
fabs, fabs,
} }
// With signature `fn(f64, f64) -> f64` // With signature `fn(f64, f64) -> f64`
f64f64_f64! { f64f64_f64! {
// atan2, // atan2,
// fdim,
// fmod, // fmod,
// hypot, // hypot,
// pow, // pow,