Make libm-test-support code clear exceptions after each test.
commit48273d42bc0689d6e8e79c1750a62f6bc3721307
authorJoseph Myers <joseph@codesourcery.com>
Fri, 23 Jun 2017 20:10:45 +0000 (23 20:10 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Fri, 23 Jun 2017 20:10:45 +0000 (23 20:10 +0000)
tree779683f717faa7e7b351a6a8e5ba2e79525c91c4
parent16000c8d04f60a15fc0187e8719d741329501c39
Make libm-test-support code clear exceptions after each test.

The libm-test-support code clears exceptions at the end of
test_exceptions.  However, it's possible that exceptions get raised as
part of the subsequent checks on the results of the function being
tested, and such exceptions then carry through to the next test run
and can cause that to fail spuriously.  In particular, it's possible
for the ulps calculation to raise exceptions in some cases.  This
patch puts exception clearing at the end of each of the check_*
functions, alongside errno clearing, to avoid one test affecting the
next in that way.

Tested for x86_64 (in conjunction with float128 patches).

* libm-test-support.c (check_float_internal): Clear exceptions at
end of function.
(check_int): Likewise.
(check_long): Likewise.
(check_bool): Likewise.
(check_longlong): Likewise.
(check_intmax_t): Likewise.
(check_uintmax_t): Likewise.
ChangeLog
math/libm-test-support.c