[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl 
    Patrick Jenkins 
    pjenkins at apple.com
       
    Fri Aug  4 14:43:17 PDT 2006
    
    
  
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.42 -> 1.43
---
Log message:
Changed a = to a .= so we now append tests we have performed to the master list of all tests instead of assigning it as the master list.
---
Diffs of the changes:  (+3 -3)
 NewNightlyTest.pl |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.42 llvm/utils/NewNightlyTest.pl:1.43
--- llvm/utils/NewNightlyTest.pl:1.42	Fri Aug  4 12:55:01 2006
+++ llvm/utils/NewNightlyTest.pl	Fri Aug  4 16:42:58 2006
@@ -885,15 +885,15 @@
 	for($x=0; $x<@DEJAGNU; $x++){
 		if($DEJAGNU[$x] =~ m/^PASS:/){
 			$passes.="$DEJAGNU[$x]\n";
-			$dejagnu_test_list="$DEJAGNU[$x]\n";
+			$dejagnu_test_list.="$DEJAGNU[$x]\n";
 		}
 		elsif($DEJAGNU[$x] =~ m/^FAIL:/){
 			$fails.="$DEJAGNU[$x]\n";
-			$dejagnu_test_list="$DEJAGNU[$x]\n";
+			$dejagnu_test_list.="$DEJAGNU[$x]\n";
 		}
 		elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
 			$xfails.="$DEJAGNU[$x]\n";
-			$dejagnu_test_list="$DEJAGNU[$x]\n";
+			$dejagnu_test_list.="$DEJAGNU[$x]\n";
 		}
 	}
 }
    
    
More information about the llvm-commits
mailing list