The nightly tester will no longer report numbers instead of tests performed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Patrick Jenkins 2006-07-21 01:34:01 +00:00
parent 02b04b4d34
commit 1f556c29e3

View File

@ -824,13 +824,13 @@ my $xfails="";
for($x=0; $x<@DEJAGNU; $x++){
if($DEJAGNU[$x] =~ m/^PASS:/){
$passes.="$x\n";
$passes.="$DEJAGNU[$x]\n";
}
elsif($DEJAGNU[$x] =~ m/^FAIL:/){
$fails.="$x\n";
$fails.="$DEJAGNU[$x]\n";
}
elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
$xfails.="$x\n";
$xfails.="$DEJAGNU[$x]\n";
}
}