X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-math-c%2B%2B.cc;h=67d7f71c0605808874d5ad250197b8a573230641;hb=bb09133116a45861827711f5e8faf2c82b98c552;hp=8b2e970a8f0a1f24e66eb42220fb925c0bf864ca;hpb=df8ad3525d27df0b821539df90af26c7fa6d3188;p=gnulib.git diff --git a/tests/test-math-c++.cc b/tests/test-math-c++.cc index 8b2e970a8..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)); @@ -53,12 +56,21 @@ SIGNATURE_CHECK (GNULIB_NAMESPACE::frexp, double, (double, int *)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::j0, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::j1, double, (double)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::jn, double, (int, double)); +#if GNULIB_TEST_LDEXPF +SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexpf, float, (float, int)); +#endif //SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexp, double, (double, int)); //SIGNATURE_CHECK (GNULIB_NAMESPACE::lgamma, double, (double)); //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 @@ -69,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));