diff options
Diffstat (limited to 'math/gen-libm-test.pl')
-rwxr-xr-x | math/gen-libm-test.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl index 217d74d2d2..2217948aba 100755 --- a/math/gen-libm-test.pl +++ b/math/gen-libm-test.pl @@ -345,7 +345,7 @@ sub parse_args { $str = ""; $extra_expected = "0"; } - $cline .= ", \"$str\", 123456789, $run_extra, $extra_expected"; + $cline .= ", \"$str\", $run_extra, $extra_expected"; if ($run_extra) { $cline .= &new_test ($str, undef, 0); } else { @@ -361,7 +361,7 @@ sub parse_args { $str = ""; $extra_expected = "0"; } - $cline .= ", \"$str\", 0, $run_extra, $extra_expected"; + $cline .= ", \"$str\", $run_extra, $extra_expected"; if ($run_extra) { $cline .= &new_test ($str, undef, 0); } else { @@ -377,7 +377,7 @@ sub parse_args { $str = ""; $extra_expected = "0"; } - $cline .= ", \"$str\", 123.456789, $run_extra, $extra_expected"; + $cline .= ", \"$str\", $run_extra, $extra_expected"; if ($run_extra) { $cline .= &new_test ($str, undef, 0); } else { @@ -393,7 +393,7 @@ sub parse_args { $str = ""; $extra_expected = "0"; } - $cline .= ", \"$str\", 123456789, $run_extra, $extra_expected"; + $cline .= ", \"$str\", $run_extra, $extra_expected"; if ($run_extra) { $cline .= &new_test ($str, undef, 0); } else { |