a8cf8de86814e4edf3d2b1cb049e74fd869e3dcb
[oota-llvm.git] / utils / NewNightlyTest.pl
1 #!/usr/bin/perl
2 use POSIX qw(strftime);
3 use File::Copy;
4 use File::Find;
5 use Socket;
6
7 #
8 # Program:  NewNightlyTest.pl
9 #
10 # Synopsis: Perform a series of tests which are designed to be run nightly.
11 #           This is used to keep track of the status of the LLVM tree, tracking
12 #           regressions and performance changes. Submits this information
13 #           to llvm.org where it is placed into the nightlytestresults database.
14 #
15 # Syntax:   NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
16 #   where
17 # OPTIONS may include one or more of the following:
18 #
19 # MAIN OPTIONS:
20 #  -config LLVMPATH If specified, use an existing LLVM build and only run and
21 #                   report the test information. The LLVMCONFIG argument should
22 #                   be the path to the llvm-config executable in the LLVM build.
23 #                   This should be the first argument if given. NOT YET
24 #                   IMPLEMENTED.
25 #  -nickname NAME   The NAME argument specifieds the nickname this script
26 #                   will submit to the nightlytest results repository.
27 #  -submit-server   Specifies a server to submit the test results too. If this
28 #                   option is not specified it defaults to
29 #                   llvm.org. This is basically just the address of the
30 #                   webserver
31 #  -submit-script   Specifies which script to call on the submit server. If
32 #                   this option is not specified it defaults to
33 #                   /nightlytest/NightlyTestAccept.php. This is basically
34 #                   everything after the www.yourserver.org.
35 #  -submit-aux      If specified, an auxiliary script to run in addition to the
36 #                   normal submit script. The script will be passed the path to
37 #                   the "sentdata.txt" file as its sole argument.
38 #  -nosubmit        Do not report the test results back to a submit server.
39 #
40 #
41 # BUILD OPTIONS (not used with -config):
42 #  -nocheckout      Do not create, checkout, update, or configure
43 #                   the source tree.
44 #  -noremove        Do not remove the BUILDDIR after it has been built.
45 #  -noremoveresults Do not remove the WEBDIR after it has been built.
46 #  -noclean         Do not run 'make clean' before building.
47 #  -nobuild         Do not build llvm. If tests are enabled perform them
48 #                   on the llvm build specified in the build directory
49 #  -release         Build an LLVM Release version
50 #  -release-asserts Build an LLVM ReleaseAsserts version
51 #  -disable-bindings     Disable building LLVM bindings.
52 #  -with-clang      Checkout Clang source into tools/clang.
53 #  -compileflags    Next argument specifies extra options passed to make when
54 #                   building LLVM.
55 #  -use-gmake       Use gmake instead of the default make command to build
56 #                   llvm and run tests.
57 #  -llvmgccdir      Next argument specifies the llvm-gcc install prefix.
58 #
59 # TESTING OPTIONS:
60 #  -notest          Do not even attempt to run the test programs.
61 #  -nodejagnu       Do not run feature or regression tests
62 #  -enable-llcbeta  Enable testing of beta features in llc.
63 #  -enable-lli      Enable testing of lli (interpreter) features, default is off
64 #  -disable-pic     Disable building with Position Independent Code.
65 #  -disable-llc     Disable LLC tests in the nightly tester.
66 #  -disable-jit     Disable JIT tests in the nightly tester.
67 #  -disable-cbe     Disable C backend tests in the nightly tester.
68 #  -disable-lto     Disable link time optimization.
69 #  -test-cflags     Next argument specifies that C compilation options that
70 #                   override the default when running the testsuite.
71 #  -test-cxxflags   Next argument specifies that C++ compilation options that
72 #                   override the default when running the testsuite.
73 #  -extraflags      Next argument specifies extra options that are passed to
74 #                   compile the tests.
75 #  -noexternals     Do not run the external tests (for cases where povray
76 #                   or SPEC are not installed)
77 #  -with-externals  Specify a directory where the external tests are located.
78 #
79 # OTHER OPTIONS:
80 #  -parallel        Run parallel jobs with GNU Make (see -parallel-jobs).
81 #  -parallel-jobs   The number of parallel Make jobs to use (default is two).
82 #  -parallel-test   Allow parallel execution of llvm-test
83 #  -verbose         Turn on some debug output
84 #  -nice            Checkout/Configure/Build with "nice" to reduce impact
85 #                   on busy servers.
86 #  -f2c             Next argument specifies path to F2C utility
87 #  -gccpath         Path to gcc/g++ used to build LLVM
88 #  -target          Specify the target triplet
89 #  -cflags          Next argument specifies that C compilation options that
90 #                   override the default.
91 #  -cxxflags        Next argument specifies that C++ compilation options that
92 #                   override the default.
93 #  -ldflags         Next argument specifies that linker options that override
94 #                   the default.
95 #
96 # CVSROOT is ignored, it is passed for backwards compatibility.
97 # BUILDDIR is the directory where sources for this test run will be checked out
98 #  AND objects for this test run will be built. This directory MUST NOT
99 #  exist before the script is run; it will be created by the svn checkout
100 #  process and erased (unless -noremove is specified; see above.)
101 # WEBDIR is the directory into which the test results web page will be written,
102 #  AND in which the "index.html" is assumed to be a symlink to the most recent
103 #  copy of the results. This directory will be created if it does not exist.
104 # LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
105 #  to. This is the same as you would have for a normal LLVM build.
106 #
107 ##############################################################
108 #
109 # Getting environment variables
110 #
111 ##############################################################
112 my $HOME       = $ENV{'HOME'};
113 my $SVNURL     = $ENV{"SVNURL"};
114 $SVNURL        = 'http://llvm.org/svn/llvm-project' unless $SVNURL;
115 my $TestSVNURL = $ENV{"TestSVNURL"};
116 $TestSVNURL    = 'http://llvm.org/svn/llvm-project' unless $TestSVNURL;
117 my $BuildDir   = $ENV{'BUILDDIR'};
118 my $WebDir     = $ENV{'WEBDIR'};
119
120 ##############################################################
121 #
122 # Calculate the date prefix...
123 #
124 ##############################################################
125 use POSIX;
126 @TIME = localtime;
127 my $DATE = strftime("%Y-%m-%d_%H-%M-%S", localtime());
128
129 ##############################################################
130 #
131 # Parse arguments...
132 #
133 ##############################################################
134 $CONFIG_PATH="";
135 $CONFIGUREARGS="";
136 $nickname="";
137 $NOTEST=0;
138 $MAKECMD="make";
139 $SUBMITSERVER = "llvm.org";
140 $SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.php";
141 $SUBMITAUX="";
142 $SUBMIT = 1;
143 $PARALLELJOBS = "2";
144 my $TESTFLAGS="";
145
146 if ($ENV{'LLVMGCCDIR'}) {
147   $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
148   $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin';
149 }
150 else {
151   $LLVMGCCPATH = "";
152 }
153
154 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
155   shift;
156   last if /^--$/;  # Stop processing arguments on --
157
158   # List command line options here...
159   if (/^-config$/)         { $CONFIG_PATH = "$ARGV[0]"; shift; next; }
160   if (/^-nocheckout$/)     { $NOCHECKOUT = 1; next; }
161   if (/^-noclean$/)        { $NOCLEAN = 1; next; }
162   if (/^-noremove$/)       { $NOREMOVE = 1; next; }
163   if (/^-noremoveatend$/)  { $NOREMOVEATEND = 1; next; }
164   if (/^-noremoveresults$/){ $NOREMOVERESULTS = 1; next; }
165   if (/^-notest$/)         { $NOTEST = 1; next; }
166   if (/^-norunningtests$/) { next; } # Backward compatibility, ignored.
167   if (/^-parallel-jobs$/)  { $PARALLELJOBS = "$ARGV[0]"; shift; next;}
168   if (/^-parallel$/)       { $MAKEOPTS = "$MAKEOPTS -j$PARALLELJOBS"; next; }
169   if (/^-parallel-test$/)  { $PROGTESTOPTS .= " ENABLE_PARALLEL_REPORT=1"; next; }
170   if (/^-with-clang$/)     { $WITHCLANG = 1; next; }
171   if (/^-release$/)        { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
172                              "OPTIMIZE_OPTION=-O2"; next;}
173   if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
174                              "DISABLE_ASSERTIONS=1 ".
175                              "OPTIMIZE_OPTION=-O2"; next;}
176   if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
177   if (/^-disable-pic$/)    { $CONFIGUREARGS .= " --enable-pic=no"; next; }
178   if (/^-enable-lli$/)     { $PROGTESTOPTS .= " ENABLE_LLI=1";
179                              $CONFIGUREARGS .= " --enable-lli"; next; }
180   if (/^-disable-llc$/)    { $PROGTESTOPTS .= " DISABLE_LLC=1";
181                              $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
182   if (/^-disable-jit$/)    { $PROGTESTOPTS .= " DISABLE_JIT=1";
183                              $CONFIGUREARGS .= " --disable-jit"; next; }
184   if (/^-disable-bindings$/)    { $CONFIGUREARGS .= " --disable-bindings"; next; }
185   if (/^-disable-cbe$/)    { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
186   if (/^-disable-lto$/)    { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
187   if (/^-test-opts$/)      { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
188   if (/^-verbose$/)        { $VERBOSE = 1; next; }
189   if (/^-teelogs$/)        { $TEELOGS = 1; next; }
190   if (/^-nice$/)           { $NICE = "nice "; next; }
191   if (/^-f2c$/)            { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
192                              shift; next; }
193   if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
194                              shift; next; }
195   if (/^-configure-args$/) { $CONFIGUREARGS .= " $ARGV[0]";
196                              shift; next; }
197   if (/^-submit-server/)   { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
198   if (/^-submit-script/)   { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
199   if (/^-submit-aux/)      { $SUBMITAUX = "$ARGV[0]"; shift; next; }
200   if (/^-nosubmit$/)       { $SUBMIT = 0; next; }
201   if (/^-nickname$/)       { $nickname = "$ARGV[0]"; shift; next; }
202   if (/^-gccpath/)         { $CONFIGUREARGS .=
203                              " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
204                              $GCCPATH=$ARGV[0]; shift;  next; }
205   else                     { $GCCPATH=""; }
206   if (/^-target/)          { $CONFIGUREARGS .= " --target=$ARGV[0]";
207                              shift; next; }
208   if (/^-cflags/)          { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
209                              shift; next; }
210   if (/^-cxxflags/)        { $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'";
211                              shift; next; }
212   if (/^-ldflags/)         { $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'";
213                              shift; next; }
214   if (/^-test-cflags/)     { $TESTFLAGS = "$TESTFLAGS CFLAGS=\'$ARGV[0]\'";
215                              shift; next; }
216   if (/^-test-cxxflags/)   { $TESTFLAGS = "$TESTFLAGS CXXFLAGS=\'$ARGV[0]\'";
217                              shift; next; }
218   if (/^-compileflags/)    { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
219   if (/^-llvmgccdir/)      { $CONFIGUREARGS .= " --with-llvmgccdir=\'$ARGV[0]\'";
220                              $LLVMGCCPATH = $ARGV[0] . '/bin';
221                              shift; next;}
222   if (/^-noexternals$/)    { $NOEXTERNALS = 1; next; }
223   if (/^-use-gmake/)       { $MAKECMD = "gmake"; shift; next; }
224   if (/^-extraflags/)      { $CONFIGUREARGS .=
225                              " --with-extra-options=\'$ARGV[0]\'"; shift; next;}
226   if (/^-noexternals$/)    { $NOEXTERNALS = 1; next; }
227   if (/^-nodejagnu$/)      { next; }
228   if (/^-nobuild$/)        { $NOBUILD = 1; next; }
229   print "Unknown option: $_ : ignoring!\n";
230 }
231
232 if ($CONFIGUREARGS !~ /--disable-jit/) {
233   $CONFIGUREARGS .= " --enable-jit";
234 }
235
236 if (@ARGV != 0 and @ARGV != 3) {
237   die "error: must specify 0 or 3 options!";
238 }
239
240 if (@ARGV == 3) {
241   if ($CONFIG_PATH ne "") {
242       die "error: arguments are unsupported in -config mode,";
243   }
244
245   # ARGV[0] used to be the CVS root, ignored for backward compatibility.
246   $BuildDir   = $ARGV[1];
247   $WebDir     = $ARGV[2];
248 }
249
250 if ($CONFIG_PATH ne "") {
251   $BuildDir = "";
252   $SVNURL = $TestSVNURL = "";
253   if ($WebDir     eq "") {
254     die("please specify a web directory");
255   }
256 } else {
257   if ($BuildDir   eq "" or
258       $WebDir     eq "") {
259     die("please specify a build directory, and a web directory");
260   }
261 }
262
263 if ($nickname eq "") {
264   die ("Please invoke NewNightlyTest.pl with command line option " .
265        "\"-nickname <nickname>\"");
266 }
267
268 my $LLVMSrcDir   = $ENV{'LLVMSRCDIR'};
269 $LLVMSrcDir    = "$BuildDir/llvm" unless $LLVMSrcDir;
270 my $LLVMObjDir   = $ENV{'LLVMOBJDIR'};
271 $LLVMObjDir    = "$BuildDir/llvm" unless $LLVMObjDir;
272 my $LLVMTestDir   = $ENV{'LLVMTESTDIR'};
273 $LLVMTestDir    = "$BuildDir/llvm/projects/llvm-test" unless $LLVMTestDir;
274
275 ##############################################################
276 #
277 # Define the file names we'll use
278 #
279 ##############################################################
280
281 my $Prefix = "$WebDir/$DATE";
282 my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
283 my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
284 my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
285
286 # These are only valid in non-config mode.
287 my $ConfigureLog = "", $BuildLog = "", $COLog = "";
288 my $DejagnuLog = "", $DejagnuSum = "", $DejagnuLog = "";
289
290 # Are we in config mode?
291 my $ConfigMode = 0;
292
293 ##############################################################
294 #
295 # Helper functions
296 #
297 ##############################################################
298
299 sub GetDir {
300   my $Suffix = shift;
301   opendir DH, $WebDir;
302   my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
303   closedir DH;
304   return @Result;
305 }
306
307 sub RunLoggedCommand {
308   my $Command = shift;
309   my $Log = shift;
310   my $Title = shift;
311   if ($TEELOGS) {
312       if ($VERBOSE) {
313           print "$Title\n";
314           print "$Command 2>&1 | tee $Log\n";
315       }
316       system "$Command 2>&1 | tee $Log";
317   } else {
318       if ($VERBOSE) {
319           print "$Title\n";
320           print "$Command 2>&1 > $Log\n";
321       }
322       system "$Command 2>&1 > $Log";
323   }
324 }
325
326 sub RunAppendingLoggedCommand {
327   my $Command = shift;
328   my $Log = shift;
329   my $Title = shift;
330   if ($TEELOGS) {
331       if ($VERBOSE) {
332           print "$Title\n";
333           print "$Command 2>&1 | tee -a $Log\n";
334       }
335       system "$Command 2>&1 | tee -a $Log";
336   } else {
337       if ($VERBOSE) {
338           print "$Title\n";
339           print "$Command 2>&1 > $Log\n";
340       }
341       system "$Command 2>&1 >> $Log";
342   }
343 }
344
345 sub GetRegex {   # (Regex with ()'s, value)
346   if ($_[1] =~ /$_[0]/m) {
347     return $1;
348   }
349   return "0";
350 }
351
352 sub ChangeDir { # directory, logical name
353   my ($dir,$name) = @_;
354   chomp($dir);
355   if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
356   $result = chdir($dir);
357   if (!$result) {
358     print "ERROR!!! Cannot change directory to: $name ($dir) because $!\n";
359     return false;
360   }
361   return true;
362 }
363
364 sub ReadFile {
365   if (open (FILE, $_[0])) {
366     undef $/;
367     my $Ret = <FILE>;
368     close FILE;
369     $/ = '\n';
370     return $Ret;
371   } else {
372     print "Could not open file '$_[0]' for reading!\n";
373     return "";
374   }
375 }
376
377 sub WriteFile {  # (filename, contents)
378   open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
379   print FILE $_[1];
380   close FILE;
381 }
382
383 sub CopyFile { #filename, newfile
384   my ($file, $newfile) = @_;
385   chomp($file);
386   if ($VERBOSE) { print "Copying $file to $newfile\n"; }
387   copy($file, $newfile);
388 }
389
390 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
391 #
392 # This function acts as a mini web browswer submitting data
393 # to our central server via the post method
394 #
395 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
396 sub SendData {
397     $host = $_[0];
398     $file = $_[1];
399     $variables = $_[2];
400
401     # Write out the "...-sentdata.txt" file.
402
403     my $sentdata="";
404     foreach $x (keys (%$variables)){
405         $value = $variables->{$x};
406         $sentdata.= "$x  => $value\n";
407     }
408     WriteFile "$Prefix-sentdata.txt", $sentdata;
409
410     if (!($SUBMITAUX eq "")) {
411         system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
412     }
413
414     if (!$SUBMIT) {
415         return "Skipped standard submit.\n";
416     }
417
418     # Create the content to send to the server.
419
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     # Send the data to the server.
428     #
429     # FIXME: This code should be more robust?
430
431     $port=80;
432     $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
433     socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
434       die "Bad socket\n";
435     connect SOCK, $socketaddr or die "Bad connection\n";
436     select((select(SOCK), $| = 1)[0]);
437
438     $length = length($content);
439
440     my $send= "POST $file HTTP/1.0\n";
441     $send.= "Host: $host\n";
442     $send.= "Content-Type: application/x-www-form-urlencoded\n";
443     $send.= "Content-length: $length\n\n";
444     $send.= "$content";
445
446     print SOCK $send;
447     my $result;
448     while(<SOCK>){
449         $result  .= $_;
450     }
451     close(SOCK);
452
453     return $result;
454 }
455
456 ##############################################################
457 #
458 # Individual Build & Test Functions
459 #
460 ##############################################################
461
462 # Create the source repository directory.
463 sub CheckoutSource {
464   die "Invalid call!" unless $ConfigMode == 0;
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       mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
472     } else {
473       if ( $VERBOSE ) {
474         print "Build directory exists!\n";
475       }
476     }
477   } else {
478     mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
479   }
480
481   ChangeDir( $BuildDir, "checkout directory" );
482   my $SVNCMD = "$NICE svn co --non-interactive";
483   RunLoggedCommand("( time -p $SVNCMD $SVNURL/llvm/trunk llvm; cd llvm/projects ; " .
484                    "  $SVNCMD $TestSVNURL/test-suite/trunk llvm-test )", $COLog,
485                    "CHECKOUT LLVM");
486   if ($WITHCLANG) {
487       RunLoggedCommand("( cd llvm/tools ; " .
488                        "  $SVNCMD $SVNURL/cfe/trunk clang )", $COLog,
489                        "CHECKOUT CLANG");
490   }
491 }
492
493 # Build the entire tree, saving build messages to the build log. Returns false
494 # on build failure.
495 sub BuildLLVM {
496   die "Invalid call!" unless $ConfigMode == 0;
497   my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
498   RunLoggedCommand("(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) ",
499                    $ConfigureLog, "CONFIGURE");
500   # Build the entire tree, capturing the output into $BuildLog
501   if (!$NOCLEAN) {
502       RunAppendingLoggedCommand("($NICE $MAKECMD $MAKEOPTS clean)", $BuildLog, "BUILD CLEAN");
503   }
504   RunAppendingLoggedCommand("(time -p $NICE $MAKECMD $MAKEOPTS)", $BuildLog, "BUILD");
505
506   if (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
507       `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l` + 0) {
508     return 0;
509   }
510
511   return 1;
512 }
513
514 # Run the named tests (i.e. "SingleSource" "MultiSource" "External")
515 sub TestDirectory {
516   my $SubDir = shift;
517   ChangeDir( "$LLVMTestDir/$SubDir",
518              "Programs Test Subdirectory" ) || return ("", "");
519
520   my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
521
522   # Make sure to clean the test results.
523   RunLoggedCommand("$MAKECMD -k $MAKEOPTS $PROGTESTOPTS clean $TESTFLAGS",
524                    $ProgramTestLog, "TEST DIRECTORY $SubDir");
525
526   # Run the programs tests... creating a report.nightly.csv file.
527   my $LLCBetaOpts = "";
528   RunLoggedCommand("$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
529                    "$TESTFLAGS TEST=nightly",
530                    $ProgramTestLog, "TEST DIRECTORY $SubDir");
531   $LLCBetaOpts = `$MAKECMD print-llcbeta-option`;
532
533   my $ProgramsTable;
534   if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0) {
535     $ProgramsTable="Error running test $SubDir\n";
536     print "ERROR TESTING\n";
537   } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
538     $ProgramsTable="Makefile error running tests $SubDir!\n";
539     print "ERROR TESTING\n";
540   } else {
541     # Create a list of the tests which were run...
542     system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
543            "| sort > $Prefix-$SubDir-Tests.txt";
544   }
545   $ProgramsTable = ReadFile "report.nightly.csv";
546
547   ChangeDir( "../../..", "Programs Test Parent Directory" );
548   return ($ProgramsTable, $LLCBetaOpts);
549 }
550
551 # Run all the nightly tests and return the program tables and the list of tests,
552 # passes, fails, and xfails.
553 sub RunNightlyTest() {
554   ($SSProgs, $llcbeta_options) = TestDirectory("SingleSource");
555   WriteFile "$Prefix-SingleSource-Performance.txt", $SSProgs;
556   ($MSProgs, $llcbeta_options) = TestDirectory("MultiSource");
557   WriteFile "$Prefix-MultiSource-Performance.txt", $MSProgs;
558   if ( ! $NOEXTERNALS ) {
559     ($ExtProgs, $llcbeta_options) = TestDirectory("External");
560     WriteFile "$Prefix-External-Performance.txt", $ExtProgs;
561     system "cat $Prefix-SingleSource-Tests.txt " .
562                "$Prefix-MultiSource-Tests.txt ".
563                "$Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
564     system "cat $Prefix-SingleSource-Performance.txt " .
565                "$Prefix-MultiSource-Performance.txt ".
566                "$Prefix-External-Performance.txt | sort > $Prefix-Performance.txt";
567   } else {
568     $ExtProgs = "External TEST STAGE SKIPPED\n";
569     if ( $VERBOSE ) {
570       print "External TEST STAGE SKIPPED\n";
571     }
572     system "cat $Prefix-SingleSource-Tests.txt " .
573                "$Prefix-MultiSource-Tests.txt ".
574                " | sort > $Prefix-Tests.txt";
575     system "cat $Prefix-SingleSource-Performance.txt " .
576                "$Prefix-MultiSource-Performance.txt ".
577                " | sort > $Prefix-Performance.txt";
578   }
579
580   # Compile passes, fails, xfails.
581   my $All = (ReadFile "$Prefix-Tests.txt");
582   my @TestSuiteResultLines = split "\n", $All;
583   my ($Passes, $Fails, $XFails) = "";
584
585   for ($x=0; $x < @TestSuiteResultLines; $x++) {
586     if (@TestSuiteResultLines[$x] =~ m/^PASS:/) {
587       $Passes .= "$TestSuiteResultLines[$x]\n";
588     }
589     elsif (@TestSuiteResultLines[$x] =~ m/^FAIL:/) {
590       $Fails .= "$TestSuiteResultLines[$x]\n";
591     }
592     elsif (@TestSuiteResultLines[$x] =~ m/^XFAIL:/) {
593       $XFails .= "$TestSuiteResultLines[$x]\n";
594     }
595   }
596
597   return ($SSProgs, $MSProgs, $ExtProgs, $All, $Passes, $Fails, $XFails);
598 }
599
600 ##############################################################
601 #
602 # Initialize filenames
603 #
604 ##############################################################
605
606 if (! -d $WebDir) {
607   mkdir $WebDir, 0777 or die "Unable to create web directory: '$WebDir'.";
608   if($VERBOSE){
609     warn "$WebDir did not exist; creating it.\n";
610   }
611 }
612
613 if ($CONFIG_PATH ne "") {
614   $ConfigMode = 1;
615   $LLVMSrcDir = GetRegex "^(.*)\\s+", `$CONFIG_PATH --src-root`;
616   $LLVMObjDir = GetRegex "^(.*)\\s+", `$CONFIG_PATH --obj-root`;
617   # FIXME: Add llvm-config hook for this?
618   $LLVMTestDir = $LLVMObjDir . "/projects/test-suite";
619 } else {
620   $ConfigureLog = "$Prefix-Configure-Log.txt";
621   $BuildLog = "$Prefix-Build-Log.txt";
622   $COLog = "$Prefix-CVS-Log.txt";
623 }
624
625 if ($VERBOSE) {
626   if ($CONFIG_PATH ne "") {
627     print "INITIALIZED (config mode)\n";
628     print "WebDir    = $WebDir\n";
629     print "Prefix    = $Prefix\n";
630     print "LLVM Src  = $LLVMSrcDir\n";
631     print "LLVM Obj  = $LLVMObjDir\n";
632     print "LLVM Test = $LLVMTestDir\n";
633   } else {
634     print "INITIALIZED\n";
635     print "SVN URL  = $SVNURL\n";
636     print "COLog    = $COLog\n";
637     print "BuildDir = $BuildDir\n";
638     print "WebDir   = $WebDir\n";
639     print "Prefix   = $Prefix\n";
640     print "BuildLog = $BuildLog\n";
641   }
642 }
643
644 ##############################################################
645 #
646 # The actual NewNightlyTest logic.
647 #
648 ##############################################################
649
650 $starttime = `date "+20%y-%m-%d %H:%M:%S"`;
651
652 my $BuildError = 0, $BuildStatus = "OK";
653 if ($ConfigMode == 0) {
654   if (!$NOCHECKOUT) {
655     CheckoutSource();
656   }
657
658   # Build LLVM.
659   ChangeDir( $LLVMSrcDir , "llvm source directory") ;
660   if ($NOCHECKOUT || $NOBUILD) {
661     $BuildStatus = "Skipped by user";
662   } else {
663     if (!BuildLLVM()) {
664       if( $VERBOSE) { print  "\n***ERROR BUILDING TREE\n\n"; }
665       $BuildError = 1;
666       $BuildStatus = "Error: compilation aborted";
667     }
668   }
669 }
670
671 # Run the llvm-test tests.
672 my ($SingleSourceProgramsTable, $MultiSourceProgramsTable, $ExternalProgramsTable,
673     $all_tests, $passes, $fails, $xfails) = "";
674 if (!$NOTEST && !$BuildError) {
675   ($SingleSourceProgramsTable, $MultiSourceProgramsTable, $ExternalProgramsTable,
676    $all_tests, $passes, $fails, $xfails) = RunNightlyTest();
677 }
678
679 $endtime = `date "+20%y-%m-%d %H:%M:%S"`;
680
681 # The last bit of logic is to remove the build and web dirs, after sending data
682 # to the server.
683
684 ##############################################################
685 #
686 # Accumulate the information to send to the server.
687 #
688 ##############################################################
689
690 if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
691
692 $machine_data = "uname: ".`uname -a`.
693                 "hardware: ".`uname -m`.
694                 "os: ".`uname -sr`.
695                 "name: ".`uname -n`.
696                 "date: ".`date \"+20%y-%m-%d\"`.
697                 "time: ".`date +\"%H:%M:%S\"`;
698
699 # Get gcc version.
700 my $gcc_version_long = "";
701 if ($GCCPATH ne "") {
702   $gcc_version_long = `$GCCPATH/gcc --version`;
703 } elsif ($ENV{"CC"}) {
704   $gcc_version_long = `$ENV{"CC"} --version`;
705 } else {
706   $gcc_version_long = `gcc --version`;
707 }
708 my $gcc_version = (split '\n', $gcc_version_long)[0];
709
710 # Get llvm-gcc target triple.
711 #
712 # FIXME: This shouldn't be hardwired to llvm-gcc.
713 my $llvmgcc_version_long = "";
714 if ($LLVMGCCPATH ne "") {
715   $llvmgcc_version_long = `$LLVMGCCPATH/llvm-gcc -v 2>&1`;
716 } else {
717   $llvmgcc_version_long = `llvm-gcc -v 2>&1`;
718 }
719 (split '\n', $llvmgcc_version_long)[1] =~ /Target: (.+)/;
720 my $targetTriple = $1;
721
722 # Logs.
723 my ($ConfigureLogData, $BuildLogData, $CheckoutLogData) = "";
724 if ($ConfigMode == 0) {
725   $ConfigureLogData = ReadFile $ConfigureLog;
726   $BuildLogData = ReadFile $BuildLog;
727   $CheckoutLogData = ReadFile $COLog;
728 }
729
730 # Checkout info.
731 my $CheckoutTime_Wall = GetRegex "^real ([0-9.]+)", $CheckoutLogData;
732 my $CheckoutTime_User = GetRegex "^user ([0-9.]+)", $CheckoutLogData;
733 my $CheckoutTime_Sys = GetRegex "^sys ([0-9.]+)", $CheckoutLogData;
734 my $CheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
735
736 # Configure info.
737 my $ConfigTimeU = GetRegex "^user ([0-9.]+)", $ConfigureLogData;
738 my $ConfigTimeS = GetRegex "^sys ([0-9.]+)", $ConfigureLogData;
739 my $ConfigTime  = $ConfigTimeU+$ConfigTimeS;  # ConfigTime = User+System
740 my $ConfigWallTime = GetRegex "^real ([0-9.]+)",$ConfigureLogData;
741 $ConfigTime=-1 unless $ConfigTime;
742 $ConfigWallTime=-1 unless $ConfigWallTime;
743
744 # Build info.
745 my $BuildTimeU = GetRegex "^user ([0-9.]+)", $BuildLogData;
746 my $BuildTimeS = GetRegex "^sys ([0-9.]+)", $BuildLogData;
747 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
748 my $BuildWallTime = GetRegex "^real ([0-9.]+)", $BuildLogData;
749 $BuildTime=-1 unless $BuildTime;
750 $BuildWallTime=-1 unless $BuildWallTime;
751
752 if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
753
754 my %hash_of_data = (
755   'machine_data' => $machine_data,
756   'build_data' => $ConfigureLogData . $BuildLogData,
757   'gcc_version' => $gcc_version,
758   'nickname' => $nickname,
759   'dejagnutime_wall' => "0.0",
760   'dejagnutime_cpu' => "0.0",
761   'cvscheckouttime_wall' => $CheckoutTime_Wall,
762   'cvscheckouttime_cpu' => $CheckoutTime_CPU,
763   'configtime_wall' => $ConfigWallTime,
764   'configtime_cpu'=> $ConfigTime,
765   'buildtime_wall' => $BuildWallTime,
766   'buildtime_cpu' => $BuildTime,
767   'buildstatus' => $BuildStatus,
768   'singlesource_programstable' => $SingleSourceProgramsTable,
769   'multisource_programstable' => $MultiSourceProgramsTable,
770   'externalsource_programstable' => $ExternalProgramsTable,
771   'llcbeta_options' => $llcbeta_options,
772   'passing_tests' => $passes,
773   'expfail_tests' => $xfails,
774   'unexpfail_tests' => $fails,
775   'all_tests' => $all_tests,
776   'dejagnutests_results' => "Dejagnu skipped by user choice.",
777   'dejagnutests_log' => "",
778   'starttime' => $starttime,
779   'endtime' => $endtime,
780   'target_triple' => $targetTriple,
781
782   # Unused, but left around for backwards compatability.
783   'warnings' => "",
784   'cvsusercommitlist' => "",
785   'cvsuserupdatelist' => "",
786   'cvsaddedfiles' => "",
787   'cvsmodifiedfiles' => "",
788   'cvsremovedfiles' => "",
789   'lines_of_code' => "",
790   'cvs_file_count' => 0,
791   'cvs_dir_count' => 0,
792   'warnings_removed' => "",
793   'warnings_added' => "",
794   'new_tests' => "",
795   'removed_tests' => "",
796   'o_file_sizes' => "",
797   'a_file_sizes' => ""
798 );
799
800 if ($SUBMIT || !($SUBMITAUX eq "")) {
801   my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
802   if( $VERBOSE) { print "============================\n$response"; }
803 } else {
804   print "============================\n";
805   foreach $x(keys %hash_of_data){
806       print "$x  => $hash_of_data{$x}\n";
807   }
808 }
809
810 ##############################################################
811 #
812 # Remove the source tree...
813 #
814 ##############################################################
815 system ( "$NICE rm -rf $BuildDir")
816   if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVEATEND);
817 system ( "$NICE rm -rf $WebDir")
818   if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);