Skip to content

Commit

Permalink
Remove the $testdate value as the first item in test_summary.pl output,
Browse files Browse the repository at this point in the history
as this causes either (1) extra editing for me or (2) a change to the
spectest_progress.csv output.  We might see about adding $testdate as
an additional column at the end.
  • Loading branch information
pmichaud committed Aug 26, 2009
1 parent dfa5853 commit 3b94522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test_summary.pl
Expand Up @@ -175,7 +175,7 @@
$gmt[4]+1, $gmt[3], $gmt[2], $gmt[1];
my $filecount = scalar(@tfiles);
my $passpercent = 100 * $sum{'pass'} / $sum{'spec'};
print join(',', $testdate, $ENV{'REV'}, (map { $sum{$_} } @col),
print join(',', $ENV{'REV'}, (map { $sum{$_} } @col),
$filecount), "\n";
printf "spectest-progress.csv update: " .
"%d files, %d (%.1f%% of %d) pass, %d fail\n",
Expand Down

0 comments on commit 3b94522

Please sign in to comment.