Reinstated the sending of a list of all dejagnutests run. Also fixed a rather embarre...
authorPatrick Jenkins <pjenkins@apple.com>
Mon, 7 Aug 2006 01:54:37 +0000 (01:54 +0000)
committerPatrick Jenkins <pjenkins@apple.com>
Mon, 7 Aug 2006 01:54:37 +0000 (01:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29538 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NewNightlyTest.pl

index 7c28954434952709dcc23ca1707f971d2111efc7..038b9659d6834d9c8d45f3c7d1db05ff6e37d5a4 100755 (executable)
@@ -460,7 +460,7 @@ sub SendData{
     $send.= "Content-length: $length\n\n";
     $send.= "$content";
 
-    #print SOCK $send;
+    print SOCK $send;
     my $result;
     while(<SOCK>){
         $result  .= $_;
@@ -1026,7 +1026,7 @@ my %hash_of_data = ('machine_data' => $machine_data,
        'passing_tests' => $passes,
        'expfail_tests' => $xfails,
        'unexpfail_tests' => $fails,
-       'all_tests' => "", #$dejagnu_test_list,
+       'all_tests' => $dejagnu_test_list,
        'new_tests' => "",
        'removed_tests' => "",
        'dejagnutests_log' => $dejagnutests_log,