diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 04:46:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 04:46:23 +0000 |
commit | f300022bbacd663e6b7b40de286038892af4f33d (patch) | |
tree | d398e8f0110a757b910eaa988d4db81120e323a6 /test/math | |
parent | e02dbd7cd75489dd1adc25aedc1a3b1e9a1b6b57 (diff) | |
download | uClibc-alpine-f300022bbacd663e6b7b40de286038892af4f33d.tar.bz2 uClibc-alpine-f300022bbacd663e6b7b40de286038892af4f33d.tar.xz |
disable some more unsupported tests
Diffstat (limited to 'test/math')
-rw-r--r-- | test/math/libm-test.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/math/libm-test.inc b/test/math/libm-test.inc index 16edf74d4..c0cb6be52 100644 --- a/test/math/libm-test.inc +++ b/test/math/libm-test.inc @@ -1898,6 +1898,7 @@ clog10_test (void) #endif +#if 0 static void conj_test (void) { @@ -1912,6 +1913,7 @@ conj_test (void) END (conj, complex); } +#endif static void @@ -4049,6 +4051,7 @@ rint_test (void) END (rint); } +#if 0 static void rint_test_tonearest (void) { @@ -4157,7 +4160,6 @@ rint_test_upward (void) END (rint_upward); } -#if 0 static void round_test (void) { @@ -5050,7 +5052,9 @@ main (int argc, char **argv) cimag_test (); clog10_test (); clog_test (); +#if 0 conj_test (); +#endif cpow_test (); cproj_test (); creal_test (); |