From: Patrick Jenkins Date: Fri, 4 Aug 2006 21:42:58 +0000 (+0000) Subject: Changed a = to a .= so we now append tests we have performed to the master list of... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf65fb6503ff124874b738030c8559a5d9538993;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29531 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 86e93257439..4c6b2b54018 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -885,15 +885,15 @@ if(!$NODEJAGNU) { 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"; } } }