blob: e44bae6c881d8d4c5a5f1c96cf26639762c523fe [file] [log] [blame]
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001#!/usr/bin/perl
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00002use POSIX qw(strftime);
3use File::Copy;
4use 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.
Patrick Jenkinsa5c04d62006-07-07 17:31:38 +000022# -noremoveresults Do not remove the WEBDIR after it has been built.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000023# -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.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000029# -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.
Patrick Jenkins215b48f2006-07-07 18:50:51 +000053# -compileflags Next argument specifies extra options passed to make when
54# building LLVM.
Patrick Jenkins1cd46912006-07-27 01:17:17 +000055# -use-gmake Use gmake instead of the default make command to build
56# llvm and run tests.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000057#
58# ---------------- Options to configure llvm-test ----------------------------
Patrick Jenkins215b48f2006-07-07 18:50:51 +000059# -extraflags Next argument specifies extra options that are passed to
60# compile the tests.
61# -noexternals Do not run the external tests (for cases where povray
62# or SPEC are not installed)
63# -with-externals Specify a directory where the external tests are located.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000064#
65# CVSROOT is the CVS repository from which the tree will be checked out,
66# specified either in the full :method:user@host:/dir syntax, or
67# just /dir if using a local repo.
68# BUILDDIR is the directory where sources for this test run will be checked out
69# AND objects for this test run will be built. This directory MUST NOT
70# exist before the script is run; it will be created by the cvs checkout
71# process and erased (unless -noremove is specified; see above.)
72# WEBDIR is the directory into which the test results web page will be written,
73# AND in which the "index.html" is assumed to be a symlink to the most recent
74# copy of the results. This directory will be created if it does not exist.
75# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
76# to. This is the same as you would have for a normal LLVM build.
77#
78##############################################################
79#
80# Getting environment variables
81#
82##############################################################
83my $HOME = $ENV{'HOME'};
84my $CVSRootDir = $ENV{'CVSROOT'};
85 $CVSRootDir = "/home/vadve/shared/PublicCVS"
86 unless $CVSRootDir;
87my $BuildDir = $ENV{'BUILDDIR'};
88 $BuildDir = "$HOME/buildtest"
89 unless $BuildDir;
90my $WebDir = $ENV{'WEBDIR'};
91 $WebDir = "$HOME/cvs/testresults-X86"
92 unless $WebDir;
93
94##############################################################
95#
96# Calculate the date prefix...
97#
98##############################################################
99@TIME = localtime;
100my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
101my $DateString = strftime "%B %d, %Y", localtime;
102my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
103
104##############################################################
105#
106# Parse arguments...
107#
108##############################################################
109$CONFIGUREARGS="";
Patrick Jenkins49717a42006-07-21 01:39:42 +0000110$nickname="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000111$NOTEST=0;
112$NORUNNINGTESTS=0;
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000113$MAKECMD="make";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000114
115while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
116 shift;
117 last if /^--$/; # Stop processing arguments on --
118
119 # List command line options here...
120 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
121 if (/^-nocvsstats$/) { $NOCVSSTATS = 1; next; }
122 if (/^-noremove$/) { $NOREMOVE = 1; next; }
Patrick Jenkinsa5c04d62006-07-07 17:31:38 +0000123 if (/^-noremoveresults$/) { $NOREMOVERESULTS = 1; next; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000124 if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
125 if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
126 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
Patrick Jenkinsadea55e2006-07-17 16:41:19 +0000127 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000128 "OPTIMIZE_OPTION=-O2";
129 $BUILDTYPE="release"; next; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000130 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
131 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
132 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
133 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
134 $CONFIGUREARGS .= " --disable-jit"; next; }
135 if (/^-verbose$/) { $VERBOSE = 1; next; }
136 if (/^-debug$/) { $DEBUG = 1; next; }
137 if (/^-nice$/) { $NICE = "nice "; next; }
138 if (/^-f2c$/) {
139 $CONFIGUREARGS .= " --with-f2c=$ARGV[0]"; shift; next;
140 }
Andrew Lenharthe36de542006-07-29 04:27:34 +0000141 if (/^-with-externals$/) {
142 $CONFIGUREARGS .= " --with-externals=$ARGV[0]"; shift; next;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000143 }
144 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
Patrick Jenkinsadea55e2006-07-17 16:41:19 +0000145 if (/^-gccpath/) { $CONFIGUREARGS .=
146 " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
Patrick Jenkins79fbf7f2006-07-14 20:44:09 +0000147 $GCCPATH=$ARGV[0];
148 shift;
149 next;}
Patrick Jenkinsf2637042006-07-18 17:21:30 +0000150 else{ $GCCPATH=""; }
Patrick Jenkinsadea55e2006-07-17 16:41:19 +0000151 if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
152 else{ $CVSCOOPT="";}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000153 if (/^-target/) {
154 $CONFIGUREARGS .= " --target=$ARGV[0]"; shift; next;
155 }
156 if (/^-cflags/) {
157 $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'"; shift; next;
158 }
159 if (/^-cxxflags/) {
160 $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'"; shift; next;
161 }
162 if (/^-ldflags/) {
163 $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'"; shift; next;
164 }
165 if (/^-compileflags/) {
166 $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next;
167 }
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000168 if (/^-use-gmake/) {
Patrick Jenkinscc8414f2006-07-27 01:24:35 +0000169 $MAKECMD = "gmake"; shift; next;
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000170 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000171 if (/^-extraflags/) {
172 $PROGTESTOPTS .= " EXTRA_FLAGS=\'$ARGV[0]\'"; shift; next;
173 }
174 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
175 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
176 if (/^-nobuild$/) { $NOBUILD = 1; next; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000177 print "Unknown option: $_ : ignoring!\n";
178}
179
180if ($ENV{'LLVMGCCDIR'}) {
181 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
182}
183if ($CONFIGUREARGS !~ /--disable-jit/) {
184 $CONFIGUREARGS .= " --enable-jit";
185}
186
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000187
Patrick Jenkinsea103a82006-08-04 17:53:27 +0000188if (@ARGV != 0 and @ARGV != 3 and $VERBOSE){
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000189 foreach $x (@ARGV){
190 print "$x\n";
191 }
192 print "Must specify 0 or 3 options!";
193}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000194
195if (@ARGV == 3) {
196 $CVSRootDir = $ARGV[0];
197 $BuildDir = $ARGV[1];
198 $WebDir = $ARGV[2];
199}
200
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000201if($CVSRootDir eq "" or
202 $BuildDir eq "" or
203 $WebDir eq ""){
204 die("please specify a cvs root directory, a build directory, and a ".
205 "web directory");
206 }
207
Patrick Jenkins514e2582006-07-20 22:28:43 +0000208if($nickname eq ""){
209 die ("Please invoke NewNightlyTest.pl with command line option \"-nickname <nickname>\"");
210}
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000211
212if($BUILDTYPE ne "release"){
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000213 $BUILDTYPE = "debug";
214}
Patrick Jenkins514e2582006-07-20 22:28:43 +0000215
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000216##############################################################
217#
218#define the file names we'll use
219#
220##############################################################
221my $Prefix = "$WebDir/$DATE";
222my $BuildLog = "$Prefix-Build-Log.txt";
223my $CVSLog = "$Prefix-CVS-Log.txt";
224my $OldenTestsLog = "$Prefix-Olden-tests.txt";
225my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
226my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000227my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000228my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
229my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
230my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
231if (! -d $WebDir) {
232 mkdir $WebDir, 0777;
233 warn "$WebDir did not exist; creating it.\n";
234}
235
236if ($VERBOSE) {
237 print "INITIALIZED\n";
238 print "CVS Root = $CVSRootDir\n";
239 print "BuildDir = $BuildDir\n";
240 print "WebDir = $WebDir\n";
241 print "Prefix = $Prefix\n";
242 print "CVSLog = $CVSLog\n";
243 print "BuildLog = $BuildLog\n";
244}
245
246##############################################################
247#
248# Helper functions
249#
250##############################################################
251sub GetDir {
252 my $Suffix = shift;
253 opendir DH, $WebDir;
254 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
255 closedir DH;
256 return @Result;
257}
258
259#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
260#
261# DiffFiles - Diff the current version of the file against the last version of
262# the file, reporting things added and removed. This is used to report, for
263# example, added and removed warnings. This returns a pair (added, removed)
264#
265#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
266sub DiffFiles {
267 my $Suffix = shift;
268 my @Others = GetDir $Suffix;
269 if (@Others == 0) { # No other files? We added all entries...
270 return (`cat $WebDir/$DATE$Suffix`, "");
271 }
272 # Diff the files now...
273 my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
274 my $Added = join "\n", grep /^</, @Diffs;
275 my $Removed = join "\n", grep /^>/, @Diffs;
276 $Added =~ s/^< //gm;
277 $Removed =~ s/^> //gm;
278 return ($Added, $Removed);
279}
280
281#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
282#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
283sub GetRegex { # (Regex with ()'s, value)
284 $_[1] =~ /$_[0]/m;
285 if (defined($1)) {
286 return $1;
287 }
288 return "0";
289}
290
291#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
292#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
293sub GetRegexNum {
294 my ($Regex, $Num, $Regex2, $File) = @_;
295 my @Items = split "\n", `grep '$Regex' $File`;
296 return GetRegex $Regex2, $Items[$Num];
297}
298
299#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
300#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
301sub ChangeDir { # directory, logical name
302 my ($dir,$name) = @_;
303 chomp($dir);
304 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000305 $result = chdir($dir);
306 if(!$result){
307 print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
Patrick Jenkins96970e92006-07-27 20:21:26 +0000308 return false;
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000309 }
Patrick Jenkins96970e92006-07-27 20:21:26 +0000310 return true;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000311}
312
313#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
314#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
315sub ReadFile {
316 if (open (FILE, $_[0])) {
317 undef $/;
318 my $Ret = <FILE>;
319 close FILE;
320 $/ = '\n';
321 return $Ret;
322 } else {
Patrick Jenkins7267bd62006-07-10 18:35:41 +0000323 print "Could not open file '$_[0]' for reading!\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000324 return "";
325 }
326}
327
328#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
329#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
330sub WriteFile { # (filename, contents)
Patrick Jenkins7267bd62006-07-10 18:35:41 +0000331 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000332 print FILE $_[1];
333 close FILE;
334}
335
336#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
337#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
338sub CopyFile { #filename, newfile
339 my ($file, $newfile) = @_;
340 chomp($file);
341 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
342 copy($file, $newfile);
343}
344
345#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
346#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
347sub AddRecord {
348 my ($Val, $Filename,$WebDir) = @_;
349 my @Records;
350 if (open FILE, "$WebDir/$Filename") {
351 @Records = grep !/$DATE/, split "\n", <FILE>;
352 close FILE;
353 }
354 push @Records, "$DATE: $Val";
355 WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
356}
357
358#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
359#
360# FormatTime - Convert a time from 1m23.45 into 83.45
361#
362#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
363sub FormatTime {
364 my $Time = shift;
365 if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
366 $Time = sprintf("%7.4f", $1*60.0+$2);
367 }
368 return $Time;
369}
370
371#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
372#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
373sub GetDejagnuTestResults { # (filename, log)
374 my ($filename, $DejagnuLog) = @_;
375 my @lines;
376 my $firstline;
377 $/ = "\n"; #Make sure we're going line at a time.
378
Patrick Jenkinsea103a82006-08-04 17:53:27 +0000379 if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000380
381 if (open SRCHFILE, $filename) {
382 # Process test results
383 my $first_list = 1;
384 my $should_break = 1;
385 my $nocopy = 0;
386 my $readingsum = 0;
387 while ( <SRCHFILE> ) {
388 if ( length($_) > 1 ) {
389 chomp($_);
390 if ( m/^XPASS:/ || m/^FAIL:/ ) {
391 $nocopy = 0;
392 if ( $first_list ) {
393 push(@lines, "UNEXPECTED TEST RESULTS\n");
394 $first_list = 0;
395 $should_break = 1;
396 push(@lines, "$_\n");
Patrick Jenkinsea103a82006-08-04 17:53:27 +0000397 if( $VERBOSE) { print " $_\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000398 } else {
399 push(@lines, "$_\n");
Patrick Jenkinsea103a82006-08-04 17:53:27 +0000400 if( $VERBOSE) { print " $_\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000401 }
402 } #elsif ( m/Summary/ ) {
403 # if ( $first_list ) {
404 # push(@lines, "PERFECT!");
405 # print " PERFECT!\n";
406 # } else {
407 # push(@lines, "</li></ol>\n");
408 # }
409 # push(@lines, "STATISTICS\n");
410 # print "\nDEJAGNU STATISTICS:\n";
411 # $should_break = 0;
412 # $nocopy = 0;
413 # $readingsum = 1;
414 #}
415 elsif ( $readingsum ) {
416 push(@lines,"$_\n");
Patrick Jenkinsea103a82006-08-04 17:53:27 +0000417 if( $VERBOSE) { print " $_\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000418 }
419
420 }
421 }
422 }
423 close SRCHFILE;
424
425 my $content = join("", @lines);
426 return $content;
427}
428
429
430#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
431#
432# This function acts as a mini web browswer submitting data
433# to our central server via the post method
434#
435#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
436sub SendData{
437 $host = $_[0];
438 $file = $_[1];
439 $variables=$_[2];
440
441 $port=80;
442 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
Patrick Jenkinsadea55e2006-07-17 16:41:19 +0000443 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
444 die "Bad socket\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000445 connect SOCK, $socketaddr or die "Bad connection\n";
446 select((select(SOCK), $| = 1)[0]);
447
448 #creating content here
449 my $content;
450 foreach $key (keys (%$variables)){
451 $value = $variables->{$key};
452 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
453 $content .= "$key=$value&";
454 }
455
456 $length = length($content);
457
458 my $send= "POST $file HTTP/1.0\n";
459 $send.= "Content-Type: application/x-www-form-urlencoded\n";
460 $send.= "Content-length: $length\n\n";
461 $send.= "$content";
462
Patrick Jenkinse8501eb2006-08-07 01:54:37 +0000463 print SOCK $send;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000464 my $result;
465 while(<SOCK>){
466 $result .= $_;
467 }
468 close(SOCK);
469
470 my $sentdata="";
Patrick Jenkins4c4e3562006-07-07 21:40:34 +0000471 foreach $x (keys (%$variables)){
Patrick Jenkins7267bd62006-07-10 18:35:41 +0000472 $value = $variables->{$x};
473 $sentdata.= "$x => $value\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000474 }
475 WriteFile "$Prefix-sentdata.txt", $sentdata;
Patrick Jenkins4c4e3562006-07-07 21:40:34 +0000476
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000477
478 return $result;
479}
480
Patrick Jenkins215b48f2006-07-07 18:50:51 +0000481##############################################################
482#
483# Getting Start timestamp
484#
485##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +0000486$starttime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000487
488##############################################################
489#
490# Create the CVS repository directory
491#
492##############################################################
493if (!$NOCHECKOUT) {
494 if (-d $BuildDir) {
495 if (!$NOREMOVE) {
Patrick Jenkins514e2582006-07-20 22:28:43 +0000496 if ( $VERBOSE ){
497 print "Build directory exists! Removing it\n";
498 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000499 system "rm -rf $BuildDir";
500 } else {
501 die "CVS checkout directory $BuildDir already exists!";
502 }
503 }
504 mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
505}
506ChangeDir( $BuildDir, "CVS checkout directory" );
507
508
509##############################################################
510#
511# Check out the llvm tree, saving CVS messages to the cvs log...
512#
513##############################################################
514my $CVSOPT = "";
515# Use compression if going over ssh.
516$CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/;
517my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co $CVSCOOPT";
518if (!$NOCHECKOUT) {
519 if ( $VERBOSE )
520 {
521 print "CHECKOUT STAGE:\n";
522 print "( time -p $CVSCMD llvm; cd llvm/projects ; $CVSCMD llvm-test ) > $CVSLog 2>&1\n";
523 }
524 system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
525 "$CVSCMD llvm-test ) > $CVSLog 2>&1";
526 ChangeDir( $BuildDir , "CVS Checkout directory") ;
527}
528ChangeDir( "llvm" , "llvm source directory") ;
529if (!$NOCHECKOUT) {
530 if ( $VERBOSE ) { print "UPDATE STAGE\n"; }
531 system "$NICE cvs update -PdRA >> $CVSLog 2>&1" ;
532}
533
534##############################################################
535#
536# Get some static statistics about the current state of CVS
537#
538# This can probably be put on the server side
539#
540##############################################################
541my $CVSCheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $CVSLog`;
542my $CVSCheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $CVSLog`;
543my $CVSCheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $CVSLog`;
544my $CVSCheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
545
546my $NumFilesInCVS = `egrep '^U' $CVSLog | wc -l` + 0;
547my $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $CVSLog | wc -l` + 0;
548my $LOC = `utils/countloc.sh`;
549
550##############################################################
551#
552# Extract some information from the CVS history... use a hash so no duplicate
553# stuff is stored. This gets the history from the previous days worth
554# of cvs activit and parses it.
555#
556##############################################################
557
558my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
559
560if(!$NOCVSSTATS){
561
562if ($VERBOSE) { print "CVS HISTORY ANALYSIS STAGE\n"; }
563@CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
564#print join "\n", @CVSHistory; print "\n";
565
566my $DateRE = '[-/:0-9 ]+\+[0-9]+';
567
568# Loop over every record from the CVS history, filling in the hashes.
569foreach $File (@CVSHistory) {
570 my ($Type, $Date, $UID, $Rev, $Filename);
571 if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
572 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
573 } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
574 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
575 } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
576 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
577 } else {
578 print "UNMATCHABLE: $File\n";
579 next;
580 }
581 # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
582
583 if ($Filename =~ /^llvm/) {
584 if ($Type eq 'M') { # Modified
585 $ModifiedFiles{$Filename} = 1;
586 $UsersCommitted{$UID} = 1;
587 } elsif ($Type eq 'A') { # Added
Patrick Jenkins4bde3bc2006-07-13 16:56:48 +0000588 $AddedFiles{$Filename} = 1;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000589 $UsersCommitted{$UID} = 1;
590 } elsif ($Type eq 'R') { # Removed
591 $RemovedFiles{$Filename} = 1;
592 $UsersCommitted{$UID} = 1;
593 } else {
594 $UsersUpdated{$UID} = 1;
595 }
596 }
597}
598
599my $TestError = 1;
600
601}#!NOCVSSTATS
602
603my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
604my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
605my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
606my $UserCommitList = join "\n", sort keys %UsersCommitted;
607my $UserUpdateList = join "\n", sort keys %UsersUpdated;
608
609##############################################################
610#
611# Build the entire tree, saving build messages to the build log
612#
613##############################################################
614if (!$NOCHECKOUT && !$NOBUILD) {
Patrick Jenkins4bde3bc2006-07-13 16:56:48 +0000615 my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
Patrick Jenkinsfcf207b2006-07-22 00:00:08 +0000616 if ( $VERBOSE ){
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000617 print "CONFIGURE STAGE:\n";
618 print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1\n";
619 }
620 system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1";
621 if ( $VERBOSE )
622 {
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000623 print "BUILD STAGE:\n";
624 print "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000625 }
626 # Build the entire tree, capturing the output into $BuildLog
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000627 system "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000628}
629
630
631##############################################################
632#
633# Get some statistics about the build...
634#
635##############################################################
636#this can de done on server
637#my @Linked = split '\n', `grep Linking $BuildLog`;
638#my $NumExecutables = scalar(grep(/executable/, @Linked));
639#my $NumLibraries = scalar(grep(!/executable/, @Linked));
640#my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
641
642
643my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
644my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
645my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
646my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
647
648$ConfigTime=-1 unless $ConfigTime;
649$ConfigWallTime=-1 unless $ConfigWallTime;
650
651my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
652my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
653my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
654my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
655
656$BuildTime=-1 unless $BuildTime;
657$BuildWallTime=-1 unless $BuildWallTime;
658
659my $BuildError = 0, $BuildStatus = "OK";
660if($NOBUILD){
661 $BuildStatus = "Skipped by user";
662 $BuildError = 1;
663}
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000664elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
665 `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000666 $BuildStatus = "Error: compilation aborted";
667 $BuildError = 1;
Patrick Jenkinse631c4a2006-08-04 17:55:01 +0000668 if( $VERBOSE) { print "\n***ERROR BUILDING TREE\n\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000669}
670if ($BuildError) { $NODEJAGNU=1; }
671
Patrick Jenkins169357e2006-07-23 21:38:07 +0000672my $a_file_sizes="";
673my $o_file_sizes="";
674if(!$BuildError){
675 if ( $VERBOSE ){
676 print "Organizing size of .o and .a files\n";
677 }
678 ChangeDir( "$BuildDir/llvm", "Build Directory" );
Patrick Jenkins59a27982006-08-02 23:48:07 +0000679 $afiles.= `find utils/ -iname '*.a' -ls`;
Patrick Jenkins69d3a952006-08-03 16:28:58 +0000680 $afiles.= `find lib/ -iname '*.a' -ls`;
Patrick Jenkins59a27982006-08-02 23:48:07 +0000681 $afiles.= `find tools/ -iname '*.a' -ls`;
682 if($BUILDTYPE eq "release"){
683 $afiles.= `find Release/ -iname '*.a' -ls`;
684 }
685 else{
686 $afiles.= `find Debug/ -iname '*.a' -ls`;
687 }
688
689
690 $ofiles.= `find utils/ -iname '*.o' -ls`;
Patrick Jenkins69d3a952006-08-03 16:28:58 +0000691 $ofiles.= `find lib/ -iname '*.o' -ls`;
Patrick Jenkins59a27982006-08-02 23:48:07 +0000692 $ofiles.= `find tools/ -iname '*.o' -ls`;
693 if($BUILDTYPE eq "release"){
694 $ofiles.= `find Release/ -iname '*.o' -ls`;
695 }
696 else{
697 $ofiles.= `find Debug/ -iname '*.o' -ls`;
698 }
699
Patrick Jenkins169357e2006-07-23 21:38:07 +0000700 @AFILES = split "\n", $afiles;
701 $a_file_sizes="";
702 foreach $x (@AFILES){
703 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000704 $a_file_sizes.="$1 $2 $BUILDTYPE\n";
Patrick Jenkins169357e2006-07-23 21:38:07 +0000705 }
706 @OFILES = split "\n", $ofiles;
707 $o_file_sizes="";
708 foreach $x (@OFILES){
709 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000710 $o_file_sizes.="$1 $2 $BUILDTYPE\n";
Patrick Jenkins169357e2006-07-23 21:38:07 +0000711 }
712}
713else{
714 $a_file_sizes="No data due to a bad build.";
715 $o_file_sizes="No data due to a bad build.";
716}
717
718
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000719##############################################################
720#
721# Running dejagnu tests
722#
723##############################################################
724my $DejangnuTestResults; # String containing the results of the dejagnu
725my $dejagnu_output = "$DejagnuTestsLog";
726if(!$NODEJAGNU) {
727 if($VERBOSE)
728 {
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000729 print "DEJAGNU FEATURE/REGRESSION TEST STAGE:\n";
730 print "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000731 }
732
733 #Run the feature and regression tests, results are put into testrun.sum
734 #Full log in testrun.log
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000735 system "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000736
737 #Copy the testrun.log and testrun.sum to our webdir
738 CopyFile("test/testrun.log", $DejagnuLog);
739 CopyFile("test/testrun.sum", $DejagnuSum);
740 #can be done on server
741 $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
742 $unexpfail_tests = $DejagnuTestResults;
743}
744#Extract time of dejagnu tests
745my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
746my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
747$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
748$DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output";
749$DejagnuTestResults = "Dejagnu skipped by user choice." unless $DejagnuTestResults;
750$DejagnuTime = "0.0" unless $DejagnuTime;
751$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
752
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000753##############################################################
754#
755# Get warnings from the build
756#
757##############################################################
758if(!$NODEJAGNU){
759
760if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
761my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
762my @Warnings;
763my $CurDir = "";
764
765foreach $Warning (@Warn) {
766 if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
767 $CurDir = $1; # Keep track of directory warning is in...
768 if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { # Remove buildir prefix if included
769 $CurDir = $1;
770 }
771 } else {
772 push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
773 }
774}
775my $WarningsFile = join "\n", @Warnings;
776$WarningsFile =~ s/:[0-9]+:/::/g;
777
778# Emit the warnings file, so we can diff...
779WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
Patrick Jenkinsc6d945f2006-07-06 22:32:15 +0000780my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000781
782# Output something to stdout if something has changed
783#print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
784#print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
785
786#my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
787#my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
788
789} #endif !NODEGAGNU
790
791##############################################################
792#
793# If we built the tree successfully, run the nightly programs tests...
794#
795# A set of tests to run is passed in (i.e. "SingleSource" "MultiSource" "External")
796#
797##############################################################
798sub TestDirectory {
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000799 my $SubDir = shift;
800
Patrick Jenkins278a6b52006-07-27 19:22:06 +0000801 ChangeDir( "$BuildDir/llvm/projects/llvm-test/$SubDir", "Programs Test Subdirectory" ) || return ("", "");
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000802
803 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
804
805 # Run the programs tests... creating a report.nightly.csv file
806 if (!$NOTEST) {
Patrick Jenkinse631c4a2006-08-04 17:55:01 +0000807 if( $VERBOSE) {
808 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
809 "TEST=nightly > $ProgramTestLog 2>&1\n";
810 }
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000811 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
812 "TEST=nightly > $ProgramTestLog 2>&1";
813 $llcbeta_options=`$MAKECMD print-llcbeta-option`;
814 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000815
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000816 my $ProgramsTable;
817 if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0){
818 $TestError = 1;
819 $ProgramsTable="Error running test $SubDir\n";
820 print "ERROR TESTING\n";
821 } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
822 $TestError = 1;
823 $ProgramsTable="Makefile error running tests $SubDir!\n";
824 print "ERROR TESTING\n";
825 } else {
826 $TestError = 0;
827 #
828 # Create a list of the tests which were run...
829 #
830 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
831 "| sort > $Prefix-multisourceprogramstable.txt";
832 }
833 $ProgramsTable = ReadFile "report.nightly.csv";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000834
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000835 ChangeDir( "../../..", "Programs Test Parent Directory" );
836 return ($ProgramsTable, $llcbeta_options);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000837}
838
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000839if (!$BuildError) {
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000840 if ( $VERBOSE ) {
Patrick Jenkinse631c4a2006-08-04 17:55:01 +0000841 print "SingleSource TEST STAGE\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000842 }
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000843 ($SingleSourceProgramsTable, $llcbeta_options) = TestDirectory("SingleSource");
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000844 WriteFile "$Prefix-singlesourceprogramstable.txt", $SingleSourceProgramsTable;
Patrick Jenkins4257ccb2006-08-08 02:03:53 +0000845 if ( $VERBOSE ) {
846 print "MultiSource TEST STAGE\n";
847 }
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000848 ($MultiSourceProgramsTable, $llcbeta_options) = TestDirectory("MultiSource");
849 WriteFile "$Prefix-multisourceprogramstable.txt", $MultiSourceProgramsTable;
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000850 if ( ! $NOEXTERNALS ) {
851 if ( $VERBOSE ) {
852 print "External TEST STAGE\n";
853 }
854 ($ExternalProgramsTable, $llcbeta_options) = TestDirectory("External");
855 WriteFile "$Prefix-externalprogramstable.txt", $ExternalProgramsTable;
856 system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000857 " $Prefix-externalprogramstable.txt | sort > $Prefix-Tests.txt";
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000858 } else {
859 $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
860 if ( $VERBOSE ) {
861 print "External TEST STAGE SKIPPED\n";
862 }
863 system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000864 " | sort > $Prefix-Tests.txt";
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000865 }
Patrick Jenkins7b4bb602006-07-10 16:36:19 +0000866 WriteFile "$Prefix-externalprogramstable.txt", $ExternalProgramsTable;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000867}
868
869##############################################################
870#
871#
872# gathering tests added removed broken information here
873#
874#
875##############################################################
Patrick Jenkins25c2a2f2006-07-21 21:58:06 +0000876my $dejagnu = ReadFile $DejagnuSum;
877my @DEJAGNU = split "\n", $dejagnu;
Patrick Jenkins7e5c3732006-08-04 17:40:54 +0000878my $dejagnu_test_list="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000879
Patrick Jenkins65c7ea02006-07-19 17:52:51 +0000880my $passes="",
881my $fails="";
882my $xfails="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000883
Patrick Jenkins25c2a2f2006-07-21 21:58:06 +0000884if(!$NODEJAGNU) {
885 for($x=0; $x<@DEJAGNU; $x++){
886 if($DEJAGNU[$x] =~ m/^PASS:/){
887 $passes.="$DEJAGNU[$x]\n";
Patrick Jenkinscf65fb62006-08-04 21:42:58 +0000888 $dejagnu_test_list.="$DEJAGNU[$x]\n";
Patrick Jenkins25c2a2f2006-07-21 21:58:06 +0000889 }
890 elsif($DEJAGNU[$x] =~ m/^FAIL:/){
891 $fails.="$DEJAGNU[$x]\n";
Patrick Jenkinscf65fb62006-08-04 21:42:58 +0000892 $dejagnu_test_list.="$DEJAGNU[$x]\n";
Patrick Jenkins25c2a2f2006-07-21 21:58:06 +0000893 }
894 elsif($DEJAGNU[$x] =~ m/^XFAIL:/){
895 $xfails.="$DEJAGNU[$x]\n";
Patrick Jenkinscf65fb62006-08-04 21:42:58 +0000896 $dejagnu_test_list.="$DEJAGNU[$x]\n";
Patrick Jenkins25c2a2f2006-07-21 21:58:06 +0000897 }
Patrick Jenkins65c7ea02006-07-19 17:52:51 +0000898 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000899}
900
901##############################################################
902#
903# If we built the tree successfully, runs of the Olden suite with
904# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
905#
906##############################################################
907if (!$BuildError) {
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000908 if ( $VERBOSE ) { print "OLDEN TEST SUITE STAGE\n"; }
909 my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
910 $MachCodeSize) = ("","","","","","","");
911 if (!$NORUNNINGTESTS) {
912 ChangeDir( "$BuildDir/llvm/projects/llvm-test/MultiSource/Benchmarks/Olden",
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000913 "Olden Test Directory");
914
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000915 # Clean out previous results...
916 system "$NICE $MAKECMD $MAKEOPTS clean > /dev/null 2>&1";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000917
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000918 # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE and
919 # GET_STABLE_NUMBERS enabled!
920 if( $VERBOSE ) { print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000921 " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1\n"; }
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000922 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000923 " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1";
924 system "cp report.nightly.csv $OldenTestsLog";
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000925 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000926}
927
Patrick Jenkins215b48f2006-07-07 18:50:51 +0000928##############################################################
929#
930# Getting end timestamp
931#
932##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +0000933$endtime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkins215b48f2006-07-07 18:50:51 +0000934
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000935
936##############################################################
937#
938# Place all the logs neatly into one humungous file
939#
940##############################################################
941
942if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
943
944$machine_data = "uname: ".`uname -a`.
945 "hardware: ".`uname -m`.
946 "os: ".`uname -sr`.
947 "name: ".`uname -n`.
948 "date: ".`date \"+20%y-%m-%d\"`.
949 "time: ".`date +\"%H:%M:%S\"`;
950
951my @CVS_DATA;
952my $cvs_data;
953@CVS_DATA = ReadFile "$CVSLog";
954$cvs_data = join("\n", @CVS_DATA);
955
956my @BUILD_DATA;
957my $build_data;
958@BUILD_DATA = ReadFile "$BuildLog";
959$build_data = join("\n", @BUILD_DATA);
960
961my @DEJAGNU_LOG;
962my @DEJAGNU_SUM;
963my $dejagnutests_log;
964my $dejagnutests_sum;
965@DEJAGNU_LOG = ReadFile "$DejagnuLog";
966@DEJAGNU_SUM = ReadFile "$DejagnuSum";
967$dejagnutests_log = join("\n", @DEJAGNU_LOG);
968$dejagnutests_sum = join("\n", @DEJAGNU_SUM);
969
970my @DEJAGNULOG_FULL;
971my $dejagnulog_full;
972@DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
973$dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
974
Patrick Jenkinsba204712006-07-20 16:54:43 +0000975my $gcc_version_long="";
Patrick Jenkinsf2637042006-07-18 17:21:30 +0000976if($GCCPATH ne ""){
Patrick Jenkins1b629442006-07-18 21:21:53 +0000977 $gcc_version_long = `$GCCPATH/gcc --version`;
Patrick Jenkins79fbf7f2006-07-14 20:44:09 +0000978}
979else{
Patrick Jenkins1b629442006-07-18 21:21:53 +0000980 $gcc_version_long = `gcc --version`;
Patrick Jenkins79fbf7f2006-07-14 20:44:09 +0000981}
Patrick Jenkins1b629442006-07-18 21:21:53 +0000982@GCC_VERSION = split '\n', $gcc_version_long;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000983my $gcc_version = $GCC_VERSION[0];
984
Patrick Jenkins59a27982006-08-02 23:48:07 +0000985my $all_tests = ReadFile "$Prefix-Tests.txt";
Patrick Jenkins65c7ea02006-07-19 17:52:51 +0000986
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000987##############################################################
988#
989# Send data via a post request
990#
991##############################################################
992
993if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
994
995
996my $host = "llvm.org";
997my $file = "/nightlytest/NightlyTestAccept.cgi";
998my %hash_of_data = ('machine_data' => $machine_data,
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000999 'build_data' => $build_data,
1000 'gcc_version' => $gcc_version,
1001 'nickname' => $nickname,
1002 'dejagnutime_wall' => $DejagnuWallTime,
1003 'dejagnutime_cpu' => $DejagnuTime,
1004 'cvscheckouttime_wall' => $CVSCheckoutTime_Wall,
1005 'cvscheckouttime_cpu' => $CVSCheckoutTime_CPU,
1006 'configtime_wall' => $ConfigWallTime,
1007 'configtime_cpu'=> $ConfigTime,
1008 'buildtime_wall' => $BuildWallTime,
1009 'buildtime_cpu' => $BuildTime,
1010 'warnings' => $WarningsFile,
1011 'cvsusercommitlist' => $UserCommitList,
1012 'cvsuserupdatelist' => $UserUpdateList,
1013 'cvsaddedfiles' => $CVSAddedFiles,
1014 'cvsmodifiedfiles' => $CVSModifiedFiles,
1015 'cvsremovedfiles' => $CVSRemovedFiles,
1016 'lines_of_code' => $LOC,
1017 'cvs_file_count' => $NumFilesInCVS,
1018 'cvs_dir_count' => $NumDirsInCVS,
1019 'buildstatus' => $BuildStatus,
1020 'singlesource_programstable' => $SingleSourceProgramsTable,
1021 'multisource_programstable' => $MultiSourceProgramsTable,
1022 'externalsource_programstable' => $ExternalProgramsTable,
1023 'llcbeta_options' => $multisource_llcbeta_options,
1024 'warnings_removed' => $WarningsRemoved,
1025 'warnings_added' => $WarningsAdded,
1026 'passing_tests' => $passes,
1027 'expfail_tests' => $xfails,
1028 'unexpfail_tests' => $fails,
Patrick Jenkinse8501eb2006-08-07 01:54:37 +00001029 'all_tests' => $dejagnu_test_list,
Patrick Jenkinsd7210f92006-08-02 18:37:40 +00001030 'new_tests' => "",
1031 'removed_tests' => "",
1032 'dejagnutests_log' => $dejagnutests_log,
1033 'dejagnutests_sum' => $dejagnutests_sum,
1034 'starttime' => $starttime,
1035 'endtime' => $endtime,
1036 'o_file_sizes' => $o_file_sizes,
1037 'a_file_sizes' => $a_file_sizes);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001038
1039$TESTING = 0;
1040
1041if($TESTING){
1042 print "============================\n";
1043 foreach $x(keys %hash_of_data){
1044 print "$x => $hash_of_data{$x}\n";
1045 }
1046}
1047else{
1048 my $response = SendData $host,$file,\%hash_of_data;
Patrick Jenkinse631c4a2006-08-04 17:55:01 +00001049 if( $VERBOSE) { print "============================\n$response"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001050}
1051
1052##############################################################
1053#
1054# Remove the cvs tree...
1055#
1056##############################################################
1057system ( "$NICE rm -rf $BuildDir") if (!$NOCHECKOUT and !$NOREMOVE);
Patrick Jenkins4bde3bc2006-07-13 16:56:48 +00001058system ( "$NICE rm -rf $WebDir") if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001059
1060