mirror of git://sourceware.org/git/glibc.git
Don't call feclearexcept in gamma function tests.
This commit is contained in:
parent
370539fb64
commit
f9b9d9c945
|
|
@ -1,3 +1,9 @@
|
||||||
|
2012-10-17 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* math/libm-test.inc (gamma_test): Do not call feclearexcept.
|
||||||
|
(lgamma_test): Likewise.
|
||||||
|
(tgamma_test): Likewise.
|
||||||
|
|
||||||
2012-10-16 Florian Weimer <fweimer@redhat.com>
|
2012-10-16 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
[BZ #14700]
|
[BZ #14700]
|
||||||
|
|
|
||||||
|
|
@ -5015,7 +5015,6 @@ gamma_test (void)
|
||||||
if (errno == ENOSYS)
|
if (errno == ENOSYS)
|
||||||
/* Function not implemented. */
|
/* Function not implemented. */
|
||||||
return;
|
return;
|
||||||
feclearexcept (FE_ALL_EXCEPT);
|
|
||||||
|
|
||||||
START (gamma);
|
START (gamma);
|
||||||
|
|
||||||
|
|
@ -5531,7 +5530,6 @@ lgamma_test (void)
|
||||||
if (errno == ENOSYS)
|
if (errno == ENOSYS)
|
||||||
/* Function not implemented. */
|
/* Function not implemented. */
|
||||||
return;
|
return;
|
||||||
feclearexcept (FE_ALL_EXCEPT);
|
|
||||||
|
|
||||||
START (lgamma);
|
START (lgamma);
|
||||||
|
|
||||||
|
|
@ -9346,7 +9344,6 @@ tgamma_test (void)
|
||||||
if (errno == ENOSYS)
|
if (errno == ENOSYS)
|
||||||
/* Function not implemented. */
|
/* Function not implemented. */
|
||||||
return;
|
return;
|
||||||
feclearexcept (FE_ALL_EXCEPT);
|
|
||||||
|
|
||||||
START (tgamma);
|
START (tgamma);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue