aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-12-04 10:05:05 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-12-18 17:24:42 -0300
commita993eea6414b2ad8d81f1fe5123a375392cad9e6 (patch)
tree732fd7f8529d859bcd6d01360793076f1027152b
parent042ed4b28a76433d2a523d59c017ace8e446570c (diff)
downloadglibc-a993eea6414b2ad8d81f1fe5123a375392cad9e6.zip
glibc-a993eea6414b2ad8d81f1fe5123a375392cad9e6.tar.gz
glibc-a993eea6414b2ad8d81f1fe5123a375392cad9e6.tar.bz2
math: Fix spurious-divbyzero flag name
Reviewed-by: DJ Delorie <dj@redhat.com>
-rwxr-xr-xmath/gen-libm-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/gen-libm-test.py b/math/gen-libm-test.py
index 397dbd3..1630fc5 100755
--- a/math/gen-libm-test.py
+++ b/math/gen-libm-test.py
@@ -103,7 +103,7 @@ EXC_EXPECTED = {'divbyzero': 'DIVBYZERO_EXCEPTION',
'invalid': 'INVALID_EXCEPTION',
'overflow': 'OVERFLOW_EXCEPTION',
'underflow': 'UNDERFLOW_EXCEPTION'}
-EXC_OK = {'divbyzero': 'DIVBYZERO_EXCEPTION_OK',
+EXC_OK = {'divbyzero': 'DIVIDE_BY_ZERO_EXCEPTION_OK',
'inexact': '0',
'invalid': 'INVALID_EXCEPTION_OK',
'overflow': 'OVERFLOW_EXCEPTION_OK',