From: Joseph Myers Date: Fri, 3 May 2013 19:04:52 +0000 (+0000) Subject: Don't use IGNORE_ZERO_INF_SIGN in hypot tests. X-Git-Tag: upstream/2.20~2162 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5dc2af39081cb7035d6d672d458a369307be5f1;p=platform%2Fupstream%2Flinaro-glibc.git Don't use IGNORE_ZERO_INF_SIGN in hypot tests. --- diff --git a/ChangeLog b/ChangeLog index 0e4ce2f..ad28e91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-05-03 Joseph Myers + + * math/libm-test.inc (hypot_test): Do not use + IGNORE_ZERO_INF_SIGN. + 2013-05-03 Andreas Jaeger * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from diff --git a/math/libm-test.inc b/math/libm-test.inc index 8feb0a6..343590a 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -9129,8 +9129,8 @@ hypot_test (void) START (hypot); - TEST_ff_f (hypot, plus_infty, 1, plus_infty, IGNORE_ZERO_INF_SIGN); - TEST_ff_f (hypot, minus_infty, 1, plus_infty, IGNORE_ZERO_INF_SIGN); + TEST_ff_f (hypot, plus_infty, 1, plus_infty); + TEST_ff_f (hypot, minus_infty, 1, plus_infty); #ifndef TEST_INLINE TEST_ff_f (hypot, plus_infty, qnan_value, plus_infty);