aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Jenkins <pjenkins@apple.com>2006-07-21 01:34:01 +0000
committerPatrick Jenkins <pjenkins@apple.com>2006-07-21 01:34:01 +0000
commit1f556c29e3571d6f7acc9a6d7e9df879bab184cd (patch)
tree8e38356b126997665619053ea436165fbf520c79
parent02b04b4d347b537becdf8453c511bf058fa4389a (diff)
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
-rwxr-xr-xutils/NewNightlyTest.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index a7137fd096..b6e50b8862 100755
--- a/utils/NewNightlyTest.pl
+++ b/utils/NewNightlyTest.pl
@@ -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";
}
}