소스 검색

math: disable bessel function check for uClibc-ng

Waldemar Brodkorb 7 년 전
부모
커밋
50ef893f09
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      test/math/libm-test.inc

+ 2 - 2
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);