From b50a71810bbd35b8c83ba6eff4e6cc6faf93a7ea Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 22 May 2013 11:49:36 +0000 Subject: Don't include expected results in libm-test test names. --- math/gen-libm-test.pl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'math') diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl index c50e27d44a..e1a32e53c4 100755 --- a/math/gen-libm-test.pl +++ b/math/gen-libm-test.pl @@ -198,20 +198,17 @@ sub parse_args { die ("$descr[$i] is unknown"); } $call .= ')'; - $str = "$call == "; + $str = $call; # Result @descr = split //,$descr_res; foreach (@descr) { if ($_ =~ /f|i|l|L/) { - $str .= &beautify ($args[$current_arg]); ++$current_arg; } elsif ($_ eq 'c') { - $str .= &build_complex_beautify ($args[$current_arg], $args[$current_arg+1]); $current_arg += 2; } elsif ($_ eq 'b') { # boolean - $str .= ($args[$current_arg] == 0) ? "false" : "true"; ++$current_arg; } elsif ($_ eq '1') { ++$current_arg; -- cgit 1.4.1