diff options
author | Patrick Jenkins <pjenkins@apple.com> | 2006-08-07 01:54:37 +0000 |
---|---|---|
committer | Patrick Jenkins <pjenkins@apple.com> | 2006-08-07 01:54:37 +0000 |
commit | 814928fb32cbef22d174db32b3d3a5f533fd9e2e (patch) | |
tree | abedd3bf117de1cfa467aef83c1e6be802907ba6 /llvm | |
parent | f6f9f6509e098d406ea9cdaa8e99f2d73eb539ce (diff) | |
download | bcm5719-llvm-814928fb32cbef22d174db32b3d3a5f533fd9e2e.tar.gz bcm5719-llvm-814928fb32cbef22d174db32b3d3a5f533fd9e2e.zip |
Reinstated the sending of a list of all dejagnutests run. Also fixed a rather embarresing error introduced during version 1.41 where i commented out the actual sending of the data to the results server.
llvm-svn: 29538
Diffstat (limited to 'llvm')
-rwxr-xr-x | llvm/utils/NewNightlyTest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/NewNightlyTest.pl b/llvm/utils/NewNightlyTest.pl index 7c289544349..038b9659d68 100755 --- a/llvm/utils/NewNightlyTest.pl +++ b/llvm/utils/NewNightlyTest.pl @@ -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, |