summaryrefslogtreecommitdiff
path: root/utils/NewNightlyTest.pl
diff options
context:
space:
mode:
authorPatrick Jenkins <pjenkins@apple.com>2006-08-07 01:54:37 +0000
committerPatrick Jenkins <pjenkins@apple.com>2006-08-07 01:54:37 +0000
commite8501eb1bbb26a06c32682a396365e92a4449dd0 (patch)
treedc64b04fa15f2d96b174a6d3bbd33c5f5971fcc0 /utils/NewNightlyTest.pl
parent1c3bf94a42f0745cce2a0ed5106e16cc6014644a (diff)
downloadllvm-e8501eb1bbb26a06c32682a396365e92a4449dd0.tar.gz
llvm-e8501eb1bbb26a06c32682a396365e92a4449dd0.tar.bz2
llvm-e8501eb1bbb26a06c32682a396365e92a4449dd0.tar.xz
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NewNightlyTest.pl')
-rwxr-xr-xutils/NewNightlyTest.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index 7c28954434..038b9659d6 100755
--- a/utils/NewNightlyTest.pl
+++ b/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,