diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-15 10:42:18 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-15 10:42:18 +0000 |
commit | 5575c0e5cd6933895bfca4d966c2466939a7525b (patch) | |
tree | 45207785d81c0b344fb0d46c0a175fea65bc6a03 /math/libm-test.inc | |
parent | d369f53178a64e2f1ff980bad590da211174df69 (diff) | |
download | glibc-5575c0e5cd6933895bfca4d966c2466939a7525b.tar.gz glibc-5575c0e5cd6933895bfca4d966c2466939a7525b.tar.xz glibc-5575c0e5cd6933895bfca4d966c2466939a7525b.zip |
Disable libm-test errno testing for TEST_INLINE.
Diffstat (limited to 'math/libm-test.inc')
-rw-r--r-- | math/libm-test.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 59e3292178..cd03ae6662 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -560,6 +560,7 @@ static void test_single_errno (const char *test_name, int errno_value, int expected_value, const char *expected_name) { +#ifndef TEST_INLINE if (errno_value == expected_value) { if (print_screen (1)) @@ -573,6 +574,7 @@ test_single_errno (const char *test_name, int errno_value, printf ("Failure: %s: errno set to %d, expected %d (%s)\n", test_name, errno_value, expected_value, expected_name); } +#endif } /* Test whether errno (value ERRNO_VALUE) has been for TEST_NAME set |