diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-10-08 22:22:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-10-08 22:22:23 +0000 |
commit | ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc (patch) | |
tree | 37d9c36837ed5fe4907848c4f0ae7cbfe1f6f41b /math/gen-libm-test.pl | |
parent | a76148d712d6c88b2f58044a422efb605154a1c9 (diff) | |
download | glibc-ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc.tar glibc-ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc.tar.gz glibc-ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc.tar.bz2 glibc-ef1bb3618c77f92a5ab1a98f907e5bb5149dc3dc.zip |
Improve libm test coverage of classification macros / functions.
Diffstat (limited to 'math/gen-libm-test.pl')
-rwxr-xr-x | math/gen-libm-test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl index 03b2352541..67227c46f5 100755 --- a/math/gen-libm-test.pl +++ b/math/gen-libm-test.pl @@ -320,7 +320,7 @@ sub parse_args { } # Special handling for some macros: $cline .= " (\"$str\", "; - if ($args[0] =~ /fpclassify|isnormal|isfinite|signbit/) { + if ($args[0] =~ /fpclassify|isnormal|isfinite|isinf|isnan|signbit/) { $c_call = "$args[0] ("; } else { $c_call = " FUNC($args[0]) ("; |