aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-05-24 12:14:03 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-05-24 12:14:03 +0000
commit795405f956cb65486432c66c2542d5b648ba9289 (patch)
treecbfe2dd5c1d2fd5262b869f03387ad80dac3d179 /math
parent80bad0ccaedf2d072435f4f6f0091141ff4bf33a (diff)
downloadglibc-795405f956cb65486432c66c2542d5b648ba9289.zip
glibc-795405f956cb65486432c66c2542d5b648ba9289.tar.gz
glibc-795405f956cb65486432c66c2542d5b648ba9289.tar.bz2
Don't include exceptions in libm-test-ulps test names.
Diffstat (limited to 'math')
-rwxr-xr-xmath/gen-libm-test.pl23
1 files changed, 0 insertions, 23 deletions
diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl
index 2f15747..03b2352 100755
--- a/math/gen-libm-test.pl
+++ b/math/gen-libm-test.pl
@@ -76,21 +76,6 @@ use vars qw ($output_dir $ulps_file);
"M_LOG_2_SQRT_PIl" => "log(2*sqrt(pi))",
"M_2_SQRT_PIl" => "2 sqrt (pi)",
"M_SQRT_PIl" => "sqrt (pi)",
- "INVALID_EXCEPTION" => "invalid exception",
- "DIVIDE_BY_ZERO_EXCEPTION" => "division by zero exception",
- "OVERFLOW_EXCEPTION" => "overflow exception",
- "UNDERFLOW_EXCEPTION" => "underflow exception",
- "UNDERFLOW_EXCEPTION_FLOAT" => "underflow exception for float",
- "UNDERFLOW_EXCEPTION_DOUBLE" => "underflow exception for double",
- "UNDERFLOW_EXCEPTION_LDOUBLE_IBM" => "underflow exception for IBM long double",
- "INVALID_EXCEPTION_OK" => "invalid exception allowed",
- "DIVIDE_BY_ZERO_EXCEPTION_OK" => "division by zero exception allowed",
- "OVERFLOW_EXCEPTION_OK" => "overflow exception allowed",
- "UNDERFLOW_EXCEPTION_OK" => "underflow exception allowed",
- "UNDERFLOW_EXCEPTION_OK_FLOAT" => "underflow exception allowed for float",
- "EXCEPTIONS_OK" => "exceptions allowed",
- "IGNORE_ZERO_INF_SIGN" => "sign of zero/inf not specified",
-"INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN" => "invalid exception and sign of zero/inf not specified"
);
@@ -223,9 +208,6 @@ sub special_functions {
$str = 'sincos (' . &beautify ($args[1]) . ', &sin_res, &cos_res)';
# handle sin
$test = $str . ' puts ' . &beautify ($args[2]) . ' in sin_res';
- if ($#args == 4) {
- $test .= " plus " . &beautify ($args[4]);
- }
$cline = " check_float (\"$test\", sin_res, $args[2]";
$cline .= &new_test ($test, $args[4]);
@@ -319,11 +301,6 @@ sub parse_args {
}
- # check for exceptions
- if ($current_arg <= $#args) {
- $str .= " plus " . &beautify ($args[$current_arg]);
- }
-
# Put the C program line together
# Reset some variables to start again
$current_arg = 1;