X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-math-c%2B%2B.cc;h=67d7f71c0605808874d5ad250197b8a573230641;hb=bb09133116a45861827711f5e8faf2c82b98c552;hp=25b7697a13901362490e1fefa5c043bcc27750df;hpb=e677143bef643fc74c206d19a7f8767745ba8774;p=gnulib.git diff --git a/tests/test-math-c++.cc b/tests/test-math-c++.cc index 25b7697a1..67d7f71c0 100644 --- a/tests/test-math-c++.cc +++ b/tests/test-math-c++.cc @@ -34,6 +34,9 @@ //SIGNATURE_CHECK (GNULIB_NAMESPACE::cosh, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::erf, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::erfc, double, (double)); +#if GNULIB_TEST_EXPF +SIGNATURE_CHECK (GNULIB_NAMESPACE::expf, float, (float)); +#endif //SIGNATURE_CHECK (GNULIB_NAMESPACE::exp, double, (double)); #if GNULIB_TEST_FABSF SIGNATURE_CHECK (GNULIB_NAMESPACE::fabsf, float, (float)); @@ -61,7 +64,13 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexpf, float, (float, int)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::log10, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::log1p, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::logb, double, (double)); +#if GNULIB_TEST_LOGF +SIGNATURE_CHECK (GNULIB_NAMESPACE::logf, float, (float)); +#endif //SIGNATURE_CHECK (GNULIB_NAMESPACE::log, double, (double)); +#if GNULIB_TEST_LOG10F +SIGNATURE_CHECK (GNULIB_NAMESPACE::log10f, float, (float)); +#endif #if GNULIB_TEST_MODFF SIGNATURE_CHECK (GNULIB_NAMESPACE::modff, float, (float, float *)); #endif @@ -72,6 +81,9 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::modff, float, (float, float *)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::rint, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::sin, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::sinh, double, (double)); +#if GNULIB_TEST_SQRTF +SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrtf, float, (float)); +#endif //SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrt, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::tan, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::tanh, double, (double));