diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-11-24 20:20:47 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-11-24 20:20:47 +0100 |
commit | 2cd5c90fc784c83c85f4af32565d5b5219aed30a (patch) | |
tree | 6306383d816b17cc2865f0be9048e6f4b9a1f9e3 /test | |
parent | c2acd989048e58dcde5c5088211b0a0e40fc0f76 (diff) |
test/math: bessel depend on XSI_MATH
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/math/libm-test.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/math/libm-test.inc b/test/math/libm-test.inc index 239675e2e..59555669b 100644 --- a/test/math/libm-test.inc +++ b/test/math/libm-test.inc @@ -3003,6 +3003,7 @@ isnormal_test (void) END (isnormal); } +#if defined __DO_XSI_MATH__ static void j0_test (void) { @@ -3149,6 +3150,7 @@ jn_test (void) END (jn); } +#endif /* __DO_XSI_MATH__ */ static void @@ -4650,6 +4652,7 @@ trunc_test (void) } #endif +#if defined __DO_XSI_MATH__ static void y0_test (void) { @@ -4792,6 +4795,7 @@ yn_test (void) END (yn); } +#endif /* __DO_XSI_MATH__ */ static void @@ -5069,14 +5073,14 @@ main (int argc, char **argv) #endif /* Bessel functions: */ -#if 0 +#if defined __DO_XSI_MATH__ j0_test (); j1_test (); jn_test (); y0_test (); y1_test (); yn_test (); -#endif +#endif /* __DO_XSI_MATH__ */ if (output_ulps) fclose (ulps_file); |