summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-03 21:28:23 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-03 21:28:23 +0100
commit50ef893f09a229123d5d90813de6594ec6fc6afc (patch)
treedfe9849c8d2f20a361e84c7fe5e23809354e9f2f
parente9886c14a2b5875eaa7fb6a545453c93a034c39a (diff)
math: disable bessel function check for uClibc-ng
-rw-r--r--test/math/libm-test.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/math/libm-test.inc b/test/math/libm-test.inc
index ee86c8c..5b1eacf 100644
--- a/test/math/libm-test.inc
+++ b/test/math/libm-test.inc
@@ -12768,14 +12768,14 @@ main (int argc, char **argv)
#endif
/* Bessel functions: */
-#if defined __DO_XSI_MATH__ && !(defined TEST_LDOUBLE || defined TEST_FLOAT)
+#if defined(__GLIBC__) && !defined(__UCLIBC__)
j0_test ();
j1_test ();
jn_test ();
y0_test ();
y1_test ();
yn_test ();
-#endif /* __DO_XSI_MATH__ */
+#endif
if (output_ulps)
fclose (ulps_file);