Fixed an issue of variable scope that prevented file size from being submitted to...
[oota-llvm.git] / utils / NewNightlyTest.pl
1 #!/usr/bin/perl
2 use POSIX qw(strftime);
3 use File::Copy;
4 use Socket;
5
6 #
7 # Program:  NewNightlyTest.pl
8 #
9 # Synopsis: Perform a series of tests which are designed to be run nightly.
10 #           This is used to keep track of the status of the LLVM tree, tracking
11 #           regressions and performance changes. Submits this information 
12 #           to llvm.org where it is placed into the nightlytestresults database. 
13 #
14 # Modified heavily by Patrick Jenkins, July 2006
15 #
16 # Syntax:   NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
17 #   where
18 # OPTIONS may include one or more of the following:
19 #  -nocheckout      Do not create, checkout, update, or configure
20 #                   the source tree.
21 #  -noremove        Do not remove the BUILDDIR after it has been built.
22 #  -noremoveresults Do not remove the WEBDIR after it has been built.
23 #  -nobuild         Do not build llvm. If tests are enabled perform them
24 #                   on the llvm build specified in the build directory
25 #  -notest          Do not even attempt to run the test programs. Implies
26 #                   -norunningtests.
27 #  -norunningtests  Do not run the Olden benchmark suite with
28 #                   LARGE_PROBLEM_SIZE enabled.
29 #  -nodejagnu       Do not run feature or regression tests
30 #  -parallel        Run two parallel jobs with GNU Make.
31 #  -release         Build an LLVM Release version
32 #  -enable-llcbeta  Enable testing of beta features in llc.
33 #  -disable-llc     Disable LLC tests in the nightly tester.
34 #  -disable-jit     Disable JIT tests in the nightly tester.
35 #  -disable-cbe     Disable C backend tests in the nightly tester.
36 #  -verbose         Turn on some debug output
37 #  -debug           Print information useful only to maintainers of this script.
38 #  -nice            Checkout/Configure/Build with "nice" to reduce impact
39 #                   on busy servers.
40 #  -f2c             Next argument specifies path to F2C utility
41 #  -nickname        The next argument specifieds the nickname this script
42 #                   will submit to the nightlytest results repository.
43 #  -gccpath         Path to gcc/g++ used to build LLVM
44 #  -cvstag          Check out a specific CVS tag to build LLVM (useful for
45 #                   testing release branches)
46 #  -target          Specify the target triplet
47 #  -cflags          Next argument specifies that C compilation options that
48 #                   override the default.
49 #  -cxxflags        Next argument specifies that C++ compilation options that
50 #                   override the default.
51 #  -ldflags         Next argument specifies that linker options that override
52 #                   the default.
53 #  -compileflags    Next argument specifies extra options passed to make when
54 #                   building LLVM.
55 #
56 #  ---------------- Options to configure llvm-test ----------------------------
57 #  -extraflags      Next argument specifies extra options that are passed to
58 #                   compile the tests.
59 #  -noexternals     Do not run the external tests (for cases where povray
60 #                   or SPEC are not installed)
61 #  -with-externals  Specify a directory where the external tests are located.
62 #
63 # CVSROOT is the CVS repository from which the tree will be checked out,
64 #  specified either in the full :method:user@host:/dir syntax, or
65 #  just /dir if using a local repo.
66 # BUILDDIR is the directory where sources for this test run will be checked out
67 #  AND objects for this test run will be built. This directory MUST NOT
68 #  exist before the script is run; it will be created by the cvs checkout
69 #  process and erased (unless -noremove is specified; see above.)
70 # WEBDIR is the directory into which the test results web page will be written,
71 #  AND in which the "index.html" is assumed to be a symlink to the most recent
72 #  copy of the results. This directory will be created if it does not exist.
73 # LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
74 #  to. This is the same as you would have for a normal LLVM build.
75 #
76 ##############################################################
77 #
78 # Getting environment variables
79 #
80 ##############################################################
81 my $HOME = $ENV{'HOME'};
82 my $CVSRootDir = $ENV{'CVSROOT'};
83    $CVSRootDir = "/home/vadve/shared/PublicCVS"
84     unless $CVSRootDir;
85 my $BuildDir   = $ENV{'BUILDDIR'};
86    $BuildDir   = "$HOME/buildtest"
87     unless $BuildDir;
88 my $WebDir     = $ENV{'WEBDIR'};
89    $WebDir     = "$HOME/cvs/testresults-X86"
90     unless $WebDir;
91
92 ##############################################################
93 #
94 # Calculate the date prefix...
95 #
96 ##############################################################
97 @TIME = localtime;
98 my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
99 my $DateString = strftime "%B %d, %Y", localtime;
100 my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
101
102 ##############################################################
103 #
104 # Parse arguments...
105 #
106 ##############################################################
107 $CONFIGUREARGS="";
108 $nickname="";
109 $NOTEST=0;
110 $NORUNNINGTESTS=0;
111
112 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
113     shift;
114     last if /^--$/;  # Stop processing arguments on --
115
116   # List command line options here...
117     if (/^-nocheckout$/)     { $NOCHECKOUT = 1; next; }
118     if (/^-nocvsstats$/)     { $NOCVSSTATS = 1; next; }
119     if (/^-noremove$/)       { $NOREMOVE = 1; next; }
120     if (/^-noremoveresults$/) { $NOREMOVERESULTS = 1; next; }
121     if (/^-notest$/)         { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
122     if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
123     if (/^-parallel$/)       { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
124     if (/^-release$/)        { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
125                                                                                                                                                    "OPTIMIZE_OPTION=-O2"; next; }
126     if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
127     if (/^-disable-llc$/)    { $PROGTESTOPTS .= " DISABLE_LLC=1";
128                                $CONFIGUREARGS .= " --disable-llc_diffs"; next; } 
129     if (/^-disable-jit$/)    { $PROGTESTOPTS .= " DISABLE_JIT=1";
130                                $CONFIGUREARGS .= " --disable-jit"; next; }
131     if (/^-verbose$/)        { $VERBOSE = 1; next; }
132     if (/^-debug$/)          { $DEBUG = 1; next; }
133     if (/^-nice$/)           { $NICE = "nice "; next; }
134     if (/^-f2c$/)            {
135         $CONFIGUREARGS .= " --with-f2c=$ARGV[0]"; shift; next;
136     }
137     if (/^-with-externals/)  {
138         $CONFIGUREARGS .= "--with-externals=$ARGV[0]"; shift; next;
139     }
140     if (/^-nickname$/)          { $nickname = "$ARGV[0]"; shift; next; }
141     if (/^-gccpath/)         { $CONFIGUREARGS .= 
142                                                                                                            " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++"; 
143                                $GCCPATH=$ARGV[0]; 
144                                shift;  
145                                next;}
146     else{ $GCCPATH=""; }
147     if (/^-cvstag/)          { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; } 
148     else{ $CVSCOOPT="";}
149     if (/^-target/)          {
150         $CONFIGUREARGS .= " --target=$ARGV[0]"; shift; next;
151     }
152     if (/^-cflags/)          {
153         $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'"; shift; next;
154     }
155     if (/^-cxxflags/)        {
156         $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'"; shift; next;
157     }
158     if (/^-ldflags/)         {
159         $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'"; shift; next;
160     }
161     if (/^-compileflags/)    {
162         $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next;
163     }
164     if (/^-extraflags/)      {
165         $PROGTESTOPTS .= " EXTRA_FLAGS=\'$ARGV[0]\'"; shift; next;
166     }
167     if (/^-noexternals$/)    { $NOEXTERNALS = 1; next; }
168     if (/^-nodejagnu$/)      { $NODEJAGNU = 1; next; }
169     if (/^-nobuild$/)        { $NOBUILD = 1; next; }
170     print "Unknown option: $_ : ignoring!\n";
171 }
172
173 if ($ENV{'LLVMGCCDIR'}) {
174     $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
175 }
176 if ($CONFIGUREARGS !~ /--disable-jit/) {
177     $CONFIGUREARGS .= " --enable-jit";
178 }
179
180 die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
181
182 if (@ARGV == 3) {
183     $CVSRootDir = $ARGV[0];
184     $BuildDir   = $ARGV[1];
185     $WebDir     = $ARGV[2];
186 }
187
188 if($nickname eq ""){
189         die ("Please invoke NewNightlyTest.pl with command line option \"-nickname <nickname>\"");
190 }
191
192 ##############################################################
193 #
194 #define the file names we'll use
195 #
196 ##############################################################
197 my $Prefix = "$WebDir/$DATE";
198 my $BuildLog = "$Prefix-Build-Log.txt";
199 my $CVSLog = "$Prefix-CVS-Log.txt";
200 my $OldenTestsLog = "$Prefix-Olden-tests.txt";
201 my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
202 my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
203 my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
204 my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
205 my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
206 my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
207 if (! -d $WebDir) {
208     mkdir $WebDir, 0777;
209     warn "$WebDir did not exist; creating it.\n";
210 }
211
212 if ($VERBOSE) {
213     print "INITIALIZED\n";
214     print "CVS Root = $CVSRootDir\n";
215     print "BuildDir = $BuildDir\n";
216     print "WebDir   = $WebDir\n";
217     print "Prefix   = $Prefix\n";
218     print "CVSLog   = $CVSLog\n";
219     print "BuildLog = $BuildLog\n";
220 }
221
222 ##############################################################
223 #
224 # Helper functions
225 #
226 ##############################################################
227 sub GetDir {
228     my $Suffix = shift;
229     opendir DH, $WebDir;
230     my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
231     closedir DH;
232     return @Result;
233 }
234
235 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
236 #
237 # DiffFiles - Diff the current version of the file against the last version of
238 # the file, reporting things added and removed.  This is used to report, for
239 # example, added and removed warnings.  This returns a pair (added, removed)
240 #
241 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
242 sub DiffFiles {
243     my $Suffix = shift;
244     my @Others = GetDir $Suffix;
245     if (@Others == 0) {  # No other files?  We added all entries...
246         return (`cat $WebDir/$DATE$Suffix`, "");
247     }
248   # Diff the files now...
249     my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
250     my $Added   = join "\n", grep /^</, @Diffs;
251     my $Removed = join "\n", grep /^>/, @Diffs;
252     $Added =~ s/^< //gm;
253     $Removed =~ s/^> //gm;
254     return ($Added, $Removed);
255 }
256
257 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
258 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
259 sub GetRegex {   # (Regex with ()'s, value)
260     $_[1] =~ /$_[0]/m;
261     if (defined($1)) {
262         return $1;
263     }
264     return "0";
265 }
266
267 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
268 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
269 sub GetRegexNum {
270     my ($Regex, $Num, $Regex2, $File) = @_;
271     my @Items = split "\n", `grep '$Regex' $File`;
272     return GetRegex $Regex2, $Items[$Num];
273 }
274
275 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
276 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
277 sub ChangeDir { # directory, logical name
278     my ($dir,$name) = @_;
279     chomp($dir);
280     if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
281     chdir($dir) || die "Cannot change directory to: $name ($dir) ";
282 }
283
284 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
285 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
286 sub ReadFile {
287     if (open (FILE, $_[0])) {
288         undef $/;
289         my $Ret = <FILE>;
290         close FILE;
291         $/ = '\n';
292         return $Ret;
293     } else {
294         print "Could not open file '$_[0]' for reading!\n";
295         return "";
296     }
297 }
298
299 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
300 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
301 sub WriteFile {  # (filename, contents)
302     open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
303     print FILE $_[1];
304     close FILE;
305 }
306
307 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
308 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
309 sub CopyFile { #filename, newfile
310     my ($file, $newfile) = @_;
311     chomp($file);
312     if ($VERBOSE) { print "Copying $file to $newfile\n"; }
313     copy($file, $newfile);
314 }
315
316 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
317 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
318 sub AddRecord {
319     my ($Val, $Filename,$WebDir) = @_;
320     my @Records;
321     if (open FILE, "$WebDir/$Filename") {
322         @Records = grep !/$DATE/, split "\n", <FILE>;
323         close FILE;
324     }
325     push @Records, "$DATE: $Val";
326     WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
327 }
328
329 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
330 #
331 # FormatTime - Convert a time from 1m23.45 into 83.45
332 #
333 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
334 sub FormatTime {
335     my $Time = shift;
336     if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
337         $Time = sprintf("%7.4f", $1*60.0+$2);
338     }
339     return $Time;
340 }
341
342 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
343 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
344 sub GetDejagnuTestResults { # (filename, log)
345     my ($filename, $DejagnuLog) = @_;
346     my @lines;
347     my $firstline;
348     $/ = "\n"; #Make sure we're going line at a time.
349
350     print "DEJAGNU TEST RESULTS:\n";
351
352     if (open SRCHFILE, $filename) {
353     # Process test results
354         my $first_list = 1;
355         my $should_break = 1;
356         my $nocopy = 0;
357         my $readingsum = 0;
358         while ( <SRCHFILE> ) {
359             if ( length($_) > 1 ) {
360                 chomp($_);
361                 if ( m/^XPASS:/ || m/^FAIL:/ ) {
362                     $nocopy = 0;
363                     if ( $first_list ) {
364                         push(@lines, "UNEXPECTED TEST RESULTS\n");
365                         $first_list = 0;
366                         $should_break = 1;
367                         push(@lines, "$_\n");
368                         print "  $_\n";
369                     } else {
370                         push(@lines, "$_\n");
371                         print "  $_\n";
372                     }
373                 } #elsif ( m/Summary/ ) {
374                 #    if ( $first_list ) {
375                 #       push(@lines, "PERFECT!");
376                 #       print "  PERFECT!\n";
377                 #    } else {
378                 #       push(@lines, "</li></ol>\n");
379                 #    }
380                 #    push(@lines, "STATISTICS\n");
381                 #    print "\nDEJAGNU STATISTICS:\n";
382                 #    $should_break = 0;
383                 #    $nocopy = 0;
384                 #    $readingsum = 1;
385                 #} 
386                 elsif ( $readingsum ) {
387                     push(@lines,"$_\n");
388                     print "  $_\n";
389                 }
390
391             }
392         }
393     }
394     close SRCHFILE;
395
396     my $content = join("", @lines);
397     return $content;
398 }
399
400
401 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
402 #
403 # This function acts as a mini web browswer submitting data
404 # to our central server via the post method
405 #
406 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
407 sub SendData{
408     $host = $_[0];
409     $file = $_[1];
410     $variables=$_[2];
411
412     $port=80;
413     $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
414     socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or 
415                          die "Bad socket\n";
416     connect SOCK, $socketaddr or die "Bad connection\n";
417     select((select(SOCK), $| = 1)[0]);
418
419     #creating content here
420     my $content;
421     foreach $key (keys (%$variables)){
422         $value = $variables->{$key};
423         $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
424         $content .= "$key=$value&";
425     }
426
427     $length = length($content);
428
429     my $send= "POST $file HTTP/1.0\n";
430     $send.= "Content-Type: application/x-www-form-urlencoded\n";
431     $send.= "Content-length: $length\n\n";
432     $send.= "$content";
433
434     print SOCK $send;
435     my $result;
436     while(<SOCK>){
437         $result  .= $_;
438     }
439     close(SOCK);
440
441     my $sentdata="";
442     foreach $x (keys (%$variables)){
443         $value = $variables->{$x};
444         $sentdata.= "$x  => $value\n";
445     }
446     WriteFile "$Prefix-sentdata.txt", $sentdata;
447     
448
449     return $result;
450 }
451
452 ##############################################################
453 #
454 # Getting Start timestamp
455 #
456 ##############################################################
457 $starttime = `date "+20%y-%m-%d %H:%M:%S"`;
458
459 ##############################################################
460 #
461 # Create the CVS repository directory
462 #
463 ##############################################################
464 if (!$NOCHECKOUT) {
465     if (-d $BuildDir) {
466         if (!$NOREMOVE) {
467                 if ( $VERBOSE ){
468                         print "Build directory exists! Removing it\n";
469                 }
470             system "rm -rf $BuildDir";
471         } else {
472             die "CVS checkout directory $BuildDir already exists!";
473         }
474     }
475     mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
476 }
477 ChangeDir( $BuildDir, "CVS checkout directory" );
478
479
480 ##############################################################
481 #
482 # Check out the llvm tree, saving CVS messages to the cvs log...
483 #
484 ##############################################################
485 my $CVSOPT = "";
486 # Use compression if going over ssh.
487 $CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/;
488 my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co $CVSCOOPT";
489 if (!$NOCHECKOUT) {
490     if ( $VERBOSE ) 
491     { 
492         print "CHECKOUT STAGE:\n"; 
493         print "( time -p $CVSCMD llvm; cd llvm/projects ; $CVSCMD llvm-test ) > $CVSLog 2>&1\n";
494     }
495     system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
496         "$CVSCMD llvm-test ) > $CVSLog 2>&1";
497     ChangeDir( $BuildDir , "CVS Checkout directory") ;
498 }
499 ChangeDir( "llvm" , "llvm source directory") ;
500 if (!$NOCHECKOUT) {
501     if ( $VERBOSE ) { print "UPDATE STAGE\n"; }
502     system "$NICE cvs update -PdRA >> $CVSLog 2>&1" ;
503 }
504
505 ##############################################################
506 #
507 # Get some static statistics about the current state of CVS
508 #
509 # This can probably be put on the server side
510 #
511 ##############################################################
512 my $CVSCheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $CVSLog`;
513 my $CVSCheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $CVSLog`;
514 my $CVSCheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $CVSLog`;
515 my $CVSCheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
516
517 my $NumFilesInCVS = `egrep '^U' $CVSLog | wc -l` + 0;
518 my $NumDirsInCVS  = `egrep '^cvs (checkout|server|update):' $CVSLog | wc -l` + 0;
519 my $LOC = `utils/countloc.sh`;
520
521 ##############################################################
522 #
523 # Extract some information from the CVS history... use a hash so no duplicate
524 # stuff is stored. This gets the history from the previous days worth
525 # of cvs activit and parses it.
526 #
527 ##############################################################
528
529 my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
530
531 if(!$NOCVSSTATS){
532
533 if ($VERBOSE) { print "CVS HISTORY ANALYSIS STAGE\n"; }
534 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
535 #print join "\n", @CVSHistory; print "\n";
536
537 my $DateRE = '[-/:0-9 ]+\+[0-9]+';
538
539 # Loop over every record from the CVS history, filling in the hashes.
540 foreach $File (@CVSHistory) {
541     my ($Type, $Date, $UID, $Rev, $Filename);
542     if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
543         ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
544     } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
545         ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
546     } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
547         ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
548     } else {
549         print "UNMATCHABLE: $File\n";
550         next;
551     }
552     # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
553     
554     if ($Filename =~ /^llvm/) {
555         if ($Type eq 'M') {        # Modified
556             $ModifiedFiles{$Filename} = 1;
557             $UsersCommitted{$UID} = 1;
558         } elsif ($Type eq 'A') {   # Added
559             $AddedFiles{$Filename} = 1;
560             $UsersCommitted{$UID} = 1;
561         } elsif ($Type eq 'R') {   # Removed
562             $RemovedFiles{$Filename} = 1;
563             $UsersCommitted{$UID} = 1;
564         } else {
565             $UsersUpdated{$UID} = 1;
566         }
567     }
568 }
569
570 my $TestError = 1;
571
572 }#!NOCVSSTATS
573
574 my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
575 my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
576 my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
577 my $UserCommitList = join "\n", sort keys %UsersCommitted;
578 my $UserUpdateList = join "\n", sort keys %UsersUpdated;
579
580 ##############################################################
581 #
582 # Build the entire tree, saving build messages to the build log
583 #
584 ##############################################################
585 if (!$NOCHECKOUT && !$NOBUILD) {
586     my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
587     if ( $VERBOSE )
588     {
589         print "CONFIGURE STAGE:\n";
590         print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1\n";
591     }
592     system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1";
593     if ( $VERBOSE ) 
594     { 
595         print "BUILD STAGE:\n";
596         print "(time -p $NICE make $MAKEOPTS) >> $BuildLog 2>&1\n";
597     }
598     # Build the entire tree, capturing the output into $BuildLog
599     system "(time -p $NICE make $MAKEOPTS) >> $BuildLog 2>&1";
600 }
601
602
603 ##############################################################
604 #
605 # Get some statistics about the build...
606 #
607 ##############################################################
608 #this can de done on server
609 #my @Linked = split '\n', `grep Linking $BuildLog`;
610 #my $NumExecutables = scalar(grep(/executable/, @Linked));
611 #my $NumLibraries   = scalar(grep(!/executable/, @Linked));
612 #my $NumObjects     = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
613
614 my $a_file_sizes="";
615 my $o_file_sizes="";
616 if(!$BuildError){
617         ChangeDir( "$BuildDir", "Build Directory" );
618         $afiles = `find . -iname '*.a' -ls`;
619         $ofiles = `find . -iname '*.o' -ls`;
620         @AFILES = split "\n", $afiles;
621         $a_file_sizes="";
622         foreach $x (@AFILES){
623           $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
624           $a_file_sizes.="$1 $2\n";
625         }       
626         @OFILES = split "\n", $ofiles;
627         $o_file_sizes="";
628         foreach $x (@OFILES){
629           $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
630           $o_file_sizes.="$1 $2\n";
631         }
632 }
633
634 my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
635 my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
636 my $ConfigTime  = $ConfigTimeU+$ConfigTimeS;  # ConfigTime = User+System
637 my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
638
639 $ConfigTime=-1 unless $ConfigTime;
640 $ConfigWallTime=-1 unless $ConfigWallTime;
641
642 my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
643 my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
644 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
645 my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
646
647 $BuildTime=-1 unless $BuildTime;
648 $BuildWallTime=-1 unless $BuildWallTime;
649
650 my $BuildError = 0, $BuildStatus = "OK";
651 if($NOBUILD){
652     $BuildStatus = "Skipped by user";
653     $BuildError = 1;
654 }
655 elsif (`grep '^make[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
656     `grep '^make: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
657     $BuildStatus = "Error: compilation aborted";
658     $BuildError = 1;
659     print  "\n***ERROR BUILDING TREE\n\n";
660 }
661 if ($BuildError) { $NODEJAGNU=1; }
662
663 ##############################################################
664 #
665 # Running dejagnu tests
666 #
667 ##############################################################
668 my $DejangnuTestResults; # String containing the results of the dejagnu
669 my $dejagnu_output = "$DejagnuTestsLog";
670 if(!$NODEJAGNU) {
671     if($VERBOSE) 
672     { 
673         print "DEJAGNU FEATURE/REGRESSION TEST STAGE:\n"; 
674         print "(time -p make $MAKEOPTS check) > $dejagnu_output 2>&1\n";
675     }
676
677     #Run the feature and regression tests, results are put into testrun.sum
678     #Full log in testrun.log
679     system "(time -p make $MAKEOPTS check) > $dejagnu_output 2>&1";
680     
681     #Copy the testrun.log and testrun.sum to our webdir
682     CopyFile("test/testrun.log", $DejagnuLog);
683     CopyFile("test/testrun.sum", $DejagnuSum);
684     #can be done on server
685     $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
686     $unexpfail_tests = $DejagnuTestResults;
687 }
688 #Extract time of dejagnu tests
689 my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
690 my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
691 $DejagnuTime  = $DejagnuTimeU+$DejagnuTimeS;  # DejagnuTime = User+System
692 $DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output"; 
693 $DejagnuTestResults = "Dejagnu skipped by user choice." unless $DejagnuTestResults;
694 $DejagnuTime     = "0.0" unless $DejagnuTime;
695 $DejagnuWallTime = "0.0" unless $DejagnuWallTime;
696
697 if ($DEBUG) {
698     print $DejagnuTestResults;
699 }    
700
701 ##############################################################
702 #
703 # Get warnings from the build
704 #
705 ##############################################################
706 if(!$NODEJAGNU){
707
708 if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
709 my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
710 my @Warnings;
711 my $CurDir = "";
712
713 foreach $Warning (@Warn) {
714     if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
715         $CurDir = $1;                 # Keep track of directory warning is in...
716         if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { # Remove buildir prefix if included
717             $CurDir = $1;
718         }
719     } else {
720         push @Warnings, "$CurDir/$Warning";     # Add directory to warning...
721     }
722 }
723 my $WarningsFile =  join "\n", @Warnings;
724 $WarningsFile =~ s/:[0-9]+:/::/g;
725
726 # Emit the warnings file, so we can diff...
727 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
728 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
729
730 # Output something to stdout if something has changed
731 #print "ADDED   WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
732 #print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
733
734 #my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
735 #my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
736
737 } #endif !NODEGAGNU
738
739 ##############################################################
740 #
741 # If we built the tree successfully, run the nightly programs tests...
742 #
743 # A set of tests to run is passed in (i.e. "SingleSource" "MultiSource" "External")
744 #
745 ##############################################################
746 sub TestDirectory {
747     my $SubDir = shift;
748     
749     ChangeDir( "projects/llvm-test/$SubDir", "Programs Test Subdirectory" );
750
751     my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
752     #my $ProgramTestLog = "$Prefix-MultiSource-ProgramTest.txt"; #CHANGE ME!
753     
754     # Run the programs tests... creating a report.nightly.csv file
755     if (!$NOTEST) {
756         print "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv "
757             . "TEST=nightly > $ProgramTestLog 2>&1\n";
758         system "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv "
759             . "TEST=nightly > $ProgramTestLog 2>&1";
760         $llcbeta_options=`make print-llcbeta-option`;
761     } 
762     
763     my $ProgramsTable;
764     if (`grep '^make[^:]: .*Error' $ProgramTestLog | wc -l` + 0){
765         $TestError = 1;
766         $ProgramsTable="Error running test $SubDir\n";
767         print "ERROR TESTING\n";
768     } elsif (`grep '^make[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
769         $TestError = 1;
770         $ProgramsTable="Makefile error running tests $SubDir!\n";
771         print "ERROR TESTING\n";
772     } else {
773         $TestError = 0;
774
775         #
776         # Create a list of the tests which were run...
777         #
778         system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog "
779         . "| sort > $Prefix-multisourceprogramstable.txt";
780     }
781     $ProgramsTable = ReadFile "report.nightly.csv";
782     
783     ChangeDir( "../../..", "Programs Test Parent Directory" );
784     return ($ProgramsTable, $llcbeta_options);
785 }
786
787 $patrickjenkins=1;
788 if(!$patrickjenkins){
789     if ( $VERBOSE ) {
790         print "Modified Multisource Olden test stage\n";
791     }
792     ($MultiSourceProgramsTable, $multisource_llcbeta_options) = TestDirectory("MultiSource/");
793     ChangeDir( "../../..", "Programs Test Parent Directory" );
794     
795
796     WriteFile "$WebDir/multisourceprogramstable.txt", $MultiSourceProgramsTable;
797 }
798 if (!$BuildError && $patrickjenkins) {
799     if ( $VERBOSE ) {
800         print "SingleSource TEST STAGE\n";
801     }
802     ($SingleSourceProgramsTable, $llcbeta_options) = TestDirectory("SingleSource");
803     WriteFile "$Prefix-singlesourceprogramstable.txt", $SingleSourceProgramsTable;
804     if ( $VERBOSE ) {
805         print "MultiSource TEST STAGE\n";
806     }
807     ($MultiSourceProgramsTable, $llcbeta_options) = TestDirectory("MultiSource");
808     WriteFile "$Prefix-multisourceprogramstable.txt", $MultiSourceProgramsTable;
809     if ( ! $NOEXTERNALS ) {
810         if ( $VERBOSE ) {
811             print "External TEST STAGE\n";
812         }
813         ($ExternalProgramsTable, $llcbeta_options) = TestDirectory("External");
814         WriteFile "$Prefix-externalprogramstable.txt", $ExternalProgramsTable;
815         system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
816             " $Prefix-externalprogramstable.txt | sort > $Prefix-Tests.txt";
817     } else {
818         $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
819         if ( $VERBOSE ) {
820             print "External TEST STAGE SKIPPED\n";
821         }
822         system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
823             " | sort > $Prefix-Tests.txt";
824     }
825     WriteFile "$Prefix-externalprogramstable.txt", $ExternalProgramsTable;
826 }
827
828 ##############################################################
829 #
830
831 # gathering tests added removed broken information here
832 #
833 #
834 ##############################################################
835 $dejagnu = ReadFile $DejagnuSum;
836 @DEJAGNU = split "\n", $dejagnu;
837
838 my $passes="",
839 my $fails="";
840 my $xfails="";
841
842 for($x=0; $x<@DEJAGNU; $x++){
843         if($DEJAGNU[$x] =~ m/^PASS:/){
844                 $passes.="$DEJAGNU[$x]\n";
845         }
846         elsif($DEJAGNU[$x] =~ m/^FAIL:/){
847                 $fails.="$DEJAGNU[$x]\n";
848         }
849         elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
850                 $xfails.="$DEJAGNU[$x]\n";
851         }
852 }
853
854 # my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
855
856 # if ($TestError) {
857 #     $TestsAdded   = "<b>error testing</b><br>";
858 #     $TestsRemoved = "<b>error testing</b><br>";
859 #     $TestsFixed   = "<b>error testing</b><br>";
860 #     $TestsBroken  = "<b>error testing</b><br>";
861 # } else {
862 #     my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
863
864 #     my @RawTestsAddedArray = split '\n', $RTestsAdded;
865 #     my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
866
867 #     my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
868 #     @RawTestsRemovedArray;
869 #     my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
870 #     @RawTestsAddedArray;
871
872 #     foreach $Test (keys %NewTests) {
873 #                       if (!exists $OldTests{$Test}) {  # TestAdded if in New but not old
874 #               $TestsAdded = "$TestsAdded$Test\n";
875 #                       } else {
876 #           if ($OldTests{$Test} =~ /TEST-PASS/) {  # Was the old one a pass?
877 #                               $TestsBroken = "$TestsBroken$Test\n";  # New one must be a failure
878 #           } else {
879 #                               $TestsFixed = "$TestsFixed$Test\n";    # No, new one is a pass.
880 #           }
881 #               }
882 #       }
883 #       foreach $Test (keys %OldTests) {  # TestRemoved if in Old but not New
884 #               $TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
885 #       }
886
887 #     #print "\nTESTS ADDED:  \n\n$TestsAdded\n\n"   if (length $TestsAdded);
888 #     #print "\nTESTS REMOVED:\n\n$TestsRemoved\n\n" if (length $TestsRemoved);
889 #     #print "\nTESTS FIXED:  \n\n$TestsFixed\n\n"   if (length $TestsFixed);
890 #     #print "\nTESTS BROKEN: \n\n$TestsBroken\n\n"  if (length $TestsBroken);
891
892 #     #$TestsAdded   = AddPreTag $TestsAdded;
893 #     #$TestsRemoved = AddPreTag $TestsRemoved;
894 #     #$TestsFixed   = AddPreTag $TestsFixed;
895 #     #$TestsBroken  = AddPreTag $TestsBroken;
896 # }
897
898 ##############################################################
899 #
900 # If we built the tree successfully, runs of the Olden suite with
901 # LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
902 #
903 ##############################################################
904 if (!$BuildError) {
905     if ( $VERBOSE ) { print "OLDEN TEST SUITE STAGE\n"; }
906     my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
907         $MachCodeSize) = ("","","","","","","");
908     if (!$NORUNNINGTESTS) {
909         ChangeDir( "$BuildDir/llvm/projects/llvm-test/MultiSource/Benchmarks/Olden",
910                    "Olden Test Directory");
911
912         # Clean out previous results...
913         system "$NICE make $MAKEOPTS clean > /dev/null 2>&1";
914         
915         # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE and
916         # GET_STABLE_NUMBERS enabled!
917         if( $VERBOSE ) { print "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
918                              " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1\n"; }
919         system "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
920             " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1";
921         system "cp report.nightly.csv $OldenTestsLog";
922     } #else {
923         #system "gunzip ${OldenTestsLog}.gz";
924     #}
925     
926     # Now we know we have $OldenTestsLog as the raw output file.  Split
927     # it up into records and read the useful information.
928     #my @Records = split />>> ========= /, ReadFile "$OldenTestsLog";
929     #shift @Records;  # Delete the first (garbage) record
930     
931     # Loop over all of the records, summarizing them into rows for the running
932     # totals file.
933     #my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock";
934     #foreach $Rec (@Records) {
935         #my $rNATTime = GetRegex 'TEST-RESULT-nat-time: program\s*([.0-9m]+)', $Rec;
936         #my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: program\s*([.0-9m]+)', $Rec;
937         #my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: program\s*([.0-9m]+)', $Rec;
938         #my $rJITTime = GetRegex 'TEST-RESULT-jit-time: program\s*([.0-9m]+)', $Rec;
939         #my $rOptTime = GetRegex "TEST-RESULT-compile: .*$WallTimeRE", $Rec;
940         #my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
941         
942         #$NATTime .= " " . FormatTime($rNATTime);
943         #$CBETime .= " " . FormatTime($rCBETime);
944         #$LLCTime .= " " . FormatTime($rLLCTime);
945         #$JITTime .= " " . FormatTime($rJITTime);
946         #$OptTime .= " $rOptTime";
947         #$BytecodeSize .= " $rBytecodeSize";
948     #}
949     #
950     # Now that we have all of the numbers we want, add them to the running totals
951     # files.
952     #AddRecord($NATTime, "running_Olden_nat_time.txt", $WebDir);
953     #AddRecord($CBETime, "running_Olden_cbe_time.txt", $WebDir);
954     #AddRecord($LLCTime, "running_Olden_llc_time.txt", $WebDir);
955     #AddRecord($JITTime, "running_Olden_jit_time.txt", $WebDir);
956     #AddRecord($OptTime, "running_Olden_opt_time.txt", $WebDir);
957     #AddRecord($BytecodeSize, "running_Olden_bytecode.txt", $WebDir);
958 }
959
960 ##############################################################
961 #
962 # Getting end timestamp
963 #
964 ##############################################################
965 $endtime = `date "+20%y-%m-%d %H:%M:%S"`;
966
967
968 ##############################################################
969 #
970 # Place all the logs neatly into one humungous file
971 #
972 ##############################################################
973
974 if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
975
976 $machine_data = "uname: ".`uname -a`. 
977                 "hardware: ".`uname -m`.
978                 "os: ".`uname -sr`.
979                 "name: ".`uname -n`.
980                 "date: ".`date \"+20%y-%m-%d\"`.
981                 "time: ".`date +\"%H:%M:%S\"`; 
982
983 my @CVS_DATA;
984 my $cvs_data;
985 @CVS_DATA = ReadFile "$CVSLog";
986 $cvs_data = join("\n", @CVS_DATA);
987
988 my @BUILD_DATA;
989 my $build_data;
990 @BUILD_DATA = ReadFile "$BuildLog";
991 $build_data = join("\n", @BUILD_DATA);
992
993 my @DEJAGNU_LOG;
994 my @DEJAGNU_SUM;
995 my $dejagnutests_log;
996 my $dejagnutests_sum;
997 @DEJAGNU_LOG = ReadFile "$DejagnuLog";
998 @DEJAGNU_SUM = ReadFile "$DejagnuSum";
999 $dejagnutests_log = join("\n", @DEJAGNU_LOG);
1000 $dejagnutests_sum = join("\n", @DEJAGNU_SUM);
1001
1002 my @DEJAGNULOG_FULL;
1003 my $dejagnulog_full;
1004 @DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
1005 $dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
1006
1007 my $gcc_version_long="";
1008 if($GCCPATH ne ""){
1009   $gcc_version_long = `$GCCPATH/gcc --version`;
1010   print "$GCCPATH/gcc --version\n";
1011 }
1012 else{
1013   $gcc_version_long = `gcc --version`;
1014   print "gcc --version\n";
1015 }
1016 @GCC_VERSION = split '\n', $gcc_version_long;
1017 my $gcc_version = $GCC_VERSION[0];
1018
1019 $all_tests = ReadFile, "$Prefix-Tests.txt";
1020
1021 ##############################################################
1022 #
1023 # Send data via a post request
1024 #
1025 ##############################################################
1026
1027 if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
1028
1029
1030 my $host = "llvm.org";
1031 my $file = "/nightlytest/NightlyTestAccept.cgi";
1032 my %hash_of_data = ('machine_data' => $machine_data,
1033                                                         'build_data' => $build_data,
1034                                 'gcc_version' => $gcc_version,
1035                                                         'nickname' => $nickname,
1036                                                         'dejagnutime_wall' => $DejagnuWallTime,
1037                                                                                 'dejagnutime_cpu' => $DejagnuTime,
1038                                                                                 'cvscheckouttime_wall' => $CVSCheckoutTime_Wall,
1039                                                                                 'cvscheckouttime_cpu' => $CVSCheckoutTime_CPU,
1040                                                                                 'configtime_wall' => $ConfigWallTime,
1041                                                                                 'configtime_cpu'=> $ConfigTime,
1042                                                                                 'buildtime_wall' => $BuildWallTime,
1043                                                                                 'buildtime_cpu' => $BuildTime,
1044                                                                                 'warnings' => $WarningsFile,
1045                                                                                 'cvsusercommitlist' => $UserCommitList,
1046                                                                                 'cvsuserupdatelist' => $UserUpdateList,
1047                                                                                 'cvsaddedfiles' => $CVSAddedFiles,
1048                                                                                 'cvsmodifiedfiles' => $CVSModifiedFiles,
1049                                                                                 'cvsremovedfiles' => $CVSRemovedFiles,
1050                                                                                 'lines_of_code' => $LOC,
1051                                                                                 'cvs_file_count' => $NumFilesInCVS,
1052                                                                                 'cvs_dir_count' => $NumDirsInCVS,
1053                                                                                 'buildstatus' => $BuildStatus,
1054                                                                                 'singlesource_programstable' => $SingleSourceProgramsTable,
1055                                                                                 'multisource_programstable' => $MultiSourceProgramsTable,
1056                                                                                 'externalsource_programstable' => $ExternalProgramsTable,
1057                                                                                 'llcbeta_options' => $multisource_llcbeta_options,
1058                                                                                 'warnings_removed' => $WarningsRemoved,
1059                                                                                 'warnings_added' => $WarningsAdded,
1060                                                                                 'passing_tests' => $passes,
1061                                                                                 'expfail_tests' => $xfails,
1062                                                                                 'unexpfail_tests' => $fails,
1063                                                                                 'all_tests' => $all_tests,
1064                                                                                 'new_tests' => "",
1065                                                                                 'removed_tests' => "",
1066                                                                                 'dejagnutests_log' => $dejagnutests_log,
1067                                                                                 'dejagnutests_sum' => $dejagnutests_sum,
1068                                                                                 'starttime' => $starttime,
1069                                                                                 'endtime' => $endtime,
1070                                                                                 'o_file_sizes' => $o_file_sizes,
1071                                                                                 'a_file_sizes' => $a_file_sizes);
1072
1073 $TESTING = 0;
1074
1075 if($TESTING){
1076     print "============================\n";
1077     foreach $x(keys %hash_of_data){
1078         print "$x  => $hash_of_data{$x}\n";
1079     }
1080 }
1081 else{
1082     my $response = SendData $host,$file,\%hash_of_data;
1083     print "============================\n$response";
1084 }
1085
1086 ##############################################################
1087 #
1088 # Remove the cvs tree...
1089 #
1090 ##############################################################
1091 system ( "$NICE rm -rf $BuildDir") if (!$NOCHECKOUT and !$NOREMOVE);
1092 system ( "$NICE rm -rf $WebDir") if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);
1093
1094