blob: f195d70ddb232da2e9e841c345a4f16759e6eb3e [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
Reid Spencerfa34d7b2006-08-13 09:53:02 +000012# to llvm.org where it is placed into the nightlytestresults database.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000013#
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
Jim Laskey27b8ba02006-09-28 17:49:20 +000032# -release-asserts Build an LLVM ReleaseAsserts version
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000033# -enable-llcbeta Enable testing of beta features in llc.
Reid Spencer2bae1f52006-11-24 20:34:16 +000034# -enable-lli Enable testing of lli (interpreter) features, default is off
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000035# -disable-llc Disable LLC tests in the nightly tester.
36# -disable-jit Disable JIT tests in the nightly tester.
37# -disable-cbe Disable C backend tests in the nightly tester.
38# -verbose Turn on some debug output
39# -debug Print information useful only to maintainers of this script.
40# -nice Checkout/Configure/Build with "nice" to reduce impact
41# on busy servers.
42# -f2c Next argument specifies path to F2C utility
43# -nickname The next argument specifieds the nickname this script
44# will submit to the nightlytest results repository.
45# -gccpath Path to gcc/g++ used to build LLVM
46# -cvstag Check out a specific CVS tag to build LLVM (useful for
47# testing release branches)
Reid Spencer99e865a2007-04-07 04:41:16 +000048# -usesvn Check code out from a subversion repository. With no
49# argument, use the standard repository. An argument specifies
50# the repository URL to use.
51# -svnurl Specify the SVN URL where LLVM can be found
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000052# -target Specify the target triplet
53# -cflags Next argument specifies that C compilation options that
54# override the default.
55# -cxxflags Next argument specifies that C++ compilation options that
56# override the default.
57# -ldflags Next argument specifies that linker options that override
58# the default.
Patrick Jenkins215b48f2006-07-07 18:50:51 +000059# -compileflags Next argument specifies extra options passed to make when
60# building LLVM.
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000061# -use-gmake Use gmake instead of the default make command to build
Patrick Jenkins1cd46912006-07-27 01:17:17 +000062# llvm and run tests.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000063#
64# ---------------- Options to configure llvm-test ----------------------------
Patrick Jenkins215b48f2006-07-07 18:50:51 +000065# -extraflags Next argument specifies extra options that are passed to
66# compile the tests.
67# -noexternals Do not run the external tests (for cases where povray
68# or SPEC are not installed)
69# -with-externals Specify a directory where the external tests are located.
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000070# -submit-server Specifies a server to submit the test results too. If this
71# option is not specified it defaults to
72# llvm.org. This is basically just the address of the
73# webserver
74# -submit-script Specifies which script to call on the submit server. If
75# this option is not specified it defaults to
Jim Laskey6d8a1b72006-09-15 17:03:36 +000076# /nightlytest/NightlyTestAccept.php. This is basically
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000077# everything after the www.yourserver.org.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000078#
79# CVSROOT is the CVS repository from which the tree will be checked out,
80# specified either in the full :method:user@host:/dir syntax, or
81# just /dir if using a local repo.
82# BUILDDIR is the directory where sources for this test run will be checked out
83# AND objects for this test run will be built. This directory MUST NOT
84# exist before the script is run; it will be created by the cvs checkout
85# process and erased (unless -noremove is specified; see above.)
86# WEBDIR is the directory into which the test results web page will be written,
87# AND in which the "index.html" is assumed to be a symlink to the most recent
88# copy of the results. This directory will be created if it does not exist.
89# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
90# to. This is the same as you would have for a normal LLVM build.
91#
92##############################################################
93#
94# Getting environment variables
95#
96##############################################################
Reid Spencerfa34d7b2006-08-13 09:53:02 +000097my $HOME = $ENV{'HOME'};
Reid Spencer99e865a2007-04-07 04:41:16 +000098my $SVNURL = $ENV{"SVNURL"};
99$SVNURL = 'svn://anon@hlvm.org:3691/llvm.svn' unless $SVNURL;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000100my $CVSRootDir = $ENV{'CVSROOT'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000101$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000102my $BuildDir = $ENV{'BUILDDIR'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000103$BuildDir = "$HOME/buildtest" unless $BuildDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000104my $WebDir = $ENV{'WEBDIR'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000105$WebDir = "$HOME/cvs/testresults-X86" unless $WebDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000106
107##############################################################
108#
109# Calculate the date prefix...
110#
111##############################################################
112@TIME = localtime;
113my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
114my $DateString = strftime "%B %d, %Y", localtime;
115my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
116
117##############################################################
118#
119# Parse arguments...
120#
121##############################################################
122$CONFIGUREARGS="";
Patrick Jenkins49717a42006-07-21 01:39:42 +0000123$nickname="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000124$NOTEST=0;
Reid Spencer99e865a2007-04-07 04:41:16 +0000125$USESVN=0;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000126$NORUNNINGTESTS=0;
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000127$MAKECMD="make";
Patrick Jenkins0e9402f2006-08-11 23:02:09 +0000128$SUBMITSERVER = "llvm.org";
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000129$SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.php";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000130
131while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000132 shift;
133 last if /^--$/; # Stop processing arguments on --
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000134
135 # List command line options here...
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000136 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
137 if (/^-nocvsstats$/) { $NOCVSSTATS = 1; next; }
138 if (/^-noremove$/) { $NOREMOVE = 1; next; }
139 if (/^-noremoveresults$/){ $NOREMOVERESULTS = 1; next; }
140 if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
141 if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
142 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
143 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
144 "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
Jim Laskey27b8ba02006-09-28 17:49:20 +0000145 if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
146 "DISABLE-ASSERTIONS=1 ".
Reid Spencer93c456c2006-10-19 15:24:04 +0000147 "OPTIMIZE_OPTION=-O2";
148 $BUILDTYPE="release-asserts"; next;}
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000149 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
Reid Spencer2bae1f52006-11-24 20:34:16 +0000150 if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1";
151 $CONFIGUREARGS .= " --enable-lli"; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000152 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
153 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
154 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
155 $CONFIGUREARGS .= " --disable-jit"; next; }
156 if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
157 if (/^-verbose$/) { $VERBOSE = 1; next; }
158 if (/^-debug$/) { $DEBUG = 1; next; }
159 if (/^-nice$/) { $NICE = "nice "; next; }
160 if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
161 shift; next; }
162 if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
163 shift; next; }
164 if (/^-submit-server/) { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
165 if (/^-submit-script/) { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
166 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
167 if (/^-gccpath/) { $CONFIGUREARGS .=
168 " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
169 $GCCPATH=$ARGV[0]; shift; next; }
170 else { $GCCPATH=""; }
171 if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
172 else { $CVSCOOPT="";}
Reid Spencer99e865a2007-04-07 04:41:16 +0000173 if (/^-usesvn/) { $USESVN = 1; }
174 if (/^-svnurl/) { $SVNURL = $ARGV[0]; shift; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000175 if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
176 shift; next; }
177 if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
178 shift; next; }
179 if (/^-cxxflags/) { $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'";
180 shift; next; }
181 if (/^-ldflags/) { $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'";
182 shift; next; }
183 if (/^-compileflags/) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
184 if (/^-use-gmake/) { $MAKECMD = "gmake"; shift; next; }
185 if (/^-compileflags/) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
186 if (/^-extraflags/) { $CONFIGUREARGS .=
187 " --with-extra-options=\'$ARGV[0]\'"; shift; next;}
188 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
189 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
190 if (/^-nobuild$/) { $NOBUILD = 1; next; }
191 print "Unknown option: $_ : ignoring!\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000192}
193
194if ($ENV{'LLVMGCCDIR'}) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000195 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000196}
197if ($CONFIGUREARGS !~ /--disable-jit/) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000198 $CONFIGUREARGS .= " --enable-jit";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000199}
200
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000201if (@ARGV != 0 and @ARGV != 3 and $VERBOSE) {
202 foreach $x (@ARGV) {
203 print "$x\n";
204 }
205 print "Must specify 0 or 3 options!";
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000206}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000207
208if (@ARGV == 3) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000209 $CVSRootDir = $ARGV[0];
210 $BuildDir = $ARGV[1];
211 $WebDir = $ARGV[2];
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000212}
213
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000214if ($CVSRootDir eq "" or
215 $BuildDir eq "" or
216 $WebDir eq "") {
217 die("please specify a cvs root directory, a build directory, and a ".
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000218 "web directory");
219 }
220
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000221if ($nickname eq "") {
222 die ("Please invoke NewNightlyTest.pl with command line option " .
223 "\"-nickname <nickname>\"");
Patrick Jenkins514e2582006-07-20 22:28:43 +0000224}
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000225
Jim Laskey27b8ba02006-09-28 17:49:20 +0000226if ($BUILDTYPE ne "release" && $BUILDTYPE ne "release-asserts") {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000227 $BUILDTYPE = "debug";
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000228}
Patrick Jenkins514e2582006-07-20 22:28:43 +0000229
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000230##############################################################
231#
232#define the file names we'll use
233#
234##############################################################
235my $Prefix = "$WebDir/$DATE";
236my $BuildLog = "$Prefix-Build-Log.txt";
Reid Spencer99e865a2007-04-07 04:41:16 +0000237my $COLog = "$Prefix-CVS-Log.txt";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000238my $OldenTestsLog = "$Prefix-Olden-tests.txt";
239my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
240my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000241my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000242my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
243my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
244my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
245if (! -d $WebDir) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000246 mkdir $WebDir, 0777;
Patrick Jenkins03137752006-08-21 20:45:57 +0000247 if($VERBOSE){
248 warn "$WebDir did not exist; creating it.\n";
249 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000250}
251
252if ($VERBOSE) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000253 print "INITIALIZED\n";
Reid Spencer99e865a2007-04-07 04:41:16 +0000254 if ($USESVN) {
255 print "SVN URL = $SVNURL\n";
256 } else {
257 print "CVS Root = $CVSRootDir\n";
258 }
259 print "COLog = $COLog\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000260 print "BuildDir = $BuildDir\n";
261 print "WebDir = $WebDir\n";
262 print "Prefix = $Prefix\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000263 print "BuildLog = $BuildLog\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000264}
265
266##############################################################
267#
268# Helper functions
269#
270##############################################################
271sub GetDir {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000272 my $Suffix = shift;
273 opendir DH, $WebDir;
274 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
275 closedir DH;
276 return @Result;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000277}
278
279#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
280#
281# DiffFiles - Diff the current version of the file against the last version of
282# the file, reporting things added and removed. This is used to report, for
283# example, added and removed warnings. This returns a pair (added, removed)
284#
285#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
286sub DiffFiles {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000287 my $Suffix = shift;
288 my @Others = GetDir $Suffix;
289 if (@Others == 0) { # No other files? We added all entries...
290 return (`cat $WebDir/$DATE$Suffix`, "");
291 }
292# Diff the files now...
293 my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
294 my $Added = join "\n", grep /^</, @Diffs;
295 my $Removed = join "\n", grep /^>/, @Diffs;
296 $Added =~ s/^< //gm;
297 $Removed =~ s/^> //gm;
298 return ($Added, $Removed);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000299}
300
301#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
302#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
303sub GetRegex { # (Regex with ()'s, value)
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000304 $_[1] =~ /$_[0]/m;
305 return $1
306 if (defined($1));
307 return "0";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000308}
309
310#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
311#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
312sub GetRegexNum {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000313 my ($Regex, $Num, $Regex2, $File) = @_;
314 my @Items = split "\n", `grep '$Regex' $File`;
315 return GetRegex $Regex2, $Items[$Num];
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000316}
317
318#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
319#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
320sub ChangeDir { # directory, logical name
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000321 my ($dir,$name) = @_;
322 chomp($dir);
323 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
324 $result = chdir($dir);
325 if (!$result) {
326 print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
327 return false;
328 }
329 return true;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000330}
331
332#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
333#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
334sub ReadFile {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000335 if (open (FILE, $_[0])) {
336 undef $/;
337 my $Ret = <FILE>;
338 close FILE;
339 $/ = '\n';
340 return $Ret;
341 } else {
342 print "Could not open file '$_[0]' for reading!\n";
343 return "";
344 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000345}
346
347#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
348#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
349sub WriteFile { # (filename, contents)
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000350 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
351 print FILE $_[1];
352 close FILE;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000353}
354
355#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
356#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
357sub CopyFile { #filename, newfile
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000358 my ($file, $newfile) = @_;
359 chomp($file);
360 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
361 copy($file, $newfile);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000362}
363
364#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
365#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
366sub AddRecord {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000367 my ($Val, $Filename,$WebDir) = @_;
368 my @Records;
369 if (open FILE, "$WebDir/$Filename") {
370 @Records = grep !/$DATE/, split "\n", <FILE>;
371 close FILE;
372 }
373 push @Records, "$DATE: $Val";
374 WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000375}
376
377#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
378#
379# FormatTime - Convert a time from 1m23.45 into 83.45
380#
381#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
382sub FormatTime {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000383 my $Time = shift;
384 if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
385 $Time = sprintf("%7.4f", $1*60.0+$2);
386 }
387 return $Time;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000388}
389
390#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000391#
392# This function is meant to read in the dejagnu sum file and
393# return a string with only the results (i.e. PASS/FAIL/XPASS/
394# XFAIL).
395#
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000396#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
397sub GetDejagnuTestResults { # (filename, log)
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000398 my ($filename, $DejagnuLog) = @_;
399 my @lines;
400 $/ = "\n"; #Make sure we're going line at a time.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000401
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000402 if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000403
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000404 if (open SRCHFILE, $filename) {
405 # Process test results
406 while ( <SRCHFILE> ) {
407 if ( length($_) > 1 ) {
408 chomp($_);
Jim Laskey01d7bcf2006-09-20 09:20:22 +0000409 if ( m/^(PASS|XPASS|FAIL|XFAIL): .*\/llvm\/test\/(.*)$/ ) {
410 push(@lines, "$1: test/$2");
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000411 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000412 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000413 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000414 }
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000415 close SRCHFILE;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000416
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000417 my $content = join("\n", @lines);
418 return $content;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000419}
420
421
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000422
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000423#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
424#
425# This function acts as a mini web browswer submitting data
426# to our central server via the post method
427#
428#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
429sub SendData{
430 $host = $_[0];
431 $file = $_[1];
432 $variables=$_[2];
433
434 $port=80;
435 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
Patrick Jenkinsadea55e2006-07-17 16:41:19 +0000436 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000437 die "Bad socket\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000438 connect SOCK, $socketaddr or die "Bad connection\n";
439 select((select(SOCK), $| = 1)[0]);
440
441 #creating content here
442 my $content;
443 foreach $key (keys (%$variables)){
444 $value = $variables->{$key};
445 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
446 $content .= "$key=$value&";
447 }
448
449 $length = length($content);
450
451 my $send= "POST $file HTTP/1.0\n";
452 $send.= "Content-Type: application/x-www-form-urlencoded\n";
453 $send.= "Content-length: $length\n\n";
454 $send.= "$content";
455
Patrick Jenkinse8501eb2006-08-07 01:54:37 +0000456 print SOCK $send;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000457 my $result;
458 while(<SOCK>){
459 $result .= $_;
460 }
461 close(SOCK);
462
463 my $sentdata="";
Patrick Jenkins4c4e3562006-07-07 21:40:34 +0000464 foreach $x (keys (%$variables)){
Patrick Jenkins7267bd62006-07-10 18:35:41 +0000465 $value = $variables->{$x};
466 $sentdata.= "$x => $value\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000467 }
468 WriteFile "$Prefix-sentdata.txt", $sentdata;
Patrick Jenkins4c4e3562006-07-07 21:40:34 +0000469
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000470
471 return $result;
472}
473
Patrick Jenkins215b48f2006-07-07 18:50:51 +0000474##############################################################
475#
476# Getting Start timestamp
477#
478##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +0000479$starttime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000480
481##############################################################
482#
483# Create the CVS repository directory
484#
485##############################################################
486if (!$NOCHECKOUT) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000487 if (-d $BuildDir) {
488 if (!$NOREMOVE) {
489 if ( $VERBOSE ) {
490 print "Build directory exists! Removing it\n";
491 }
492 system "rm -rf $BuildDir";
Reid Spencer99e865a2007-04-07 04:41:16 +0000493 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000494 } else {
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000495 if ( $VERBOSE ) {
496 print "Build directory exists!\n";
497 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000498 }
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000499 } else {
Reid Spencer99e865a2007-04-07 04:41:16 +0000500 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000501 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000502}
Reid Spencer99e865a2007-04-07 04:41:16 +0000503ChangeDir( $BuildDir, "checkout directory" );
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000504
505
506##############################################################
507#
Reid Spencer99e865a2007-04-07 04:41:16 +0000508# Check out the llvm tree, using either SVN or CVS
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000509#
510##############################################################
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000511if (!$NOCHECKOUT) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000512 if ( $VERBOSE ) {
513 print "CHECKOUT STAGE:\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000514 }
Reid Spencer99e865a2007-04-07 04:41:16 +0000515 if ($USESVN) {
516 my $SVNCMD = "$NICE svn co $SVNURL";
517 if ($VERBOSE) {
518 print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
519 "$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
520 system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
521 "$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
522 }
523 } else {
524 my $CVSOPT = "";
525 $CVSOPT = "-z3" # Use compression if going over ssh.
526 if $CVSRootDir =~ /^:ext:/;
527 my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co -P $CVSCOOPT";
528 print "( time -p $CVSCMD llvm; cd llvm/projects ; " .
529 "$CVSCMD llvm-test ) > $COLog 2>&1";
530 system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
531 "$CVSCMD llvm-test ) > $COLog 2>&1";
532 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000533}
Reid Spencer99e865a2007-04-07 04:41:16 +0000534ChangeDir( $BuildDir , "Checkout directory") ;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000535ChangeDir( "llvm" , "llvm source directory") ;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000536
537##############################################################
538#
539# Get some static statistics about the current state of CVS
540#
541# This can probably be put on the server side
542#
543##############################################################
Reid Spencer99e865a2007-04-07 04:41:16 +0000544my $CheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $COLog`;
545my $CheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $COLog`;
546my $CheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $COLog`;
547my $CheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000548
Reid Spencer99e865a2007-04-07 04:41:16 +0000549my $NumFilesInCVS = 0;
550my $NumDirsInCVS = 0;
551if ($USESVN) {
552 $NumFilesInCVS = `egrep '^A' $COLog | wc -l` + 0;
553 $NumDirsInCVS = `sed -e 's#/[^/]*$##' $COLog | sort | uniq | wc -l` + 0;
554} else {
555 $NumFilesInCVS = `egrep '^U' $COLog | wc -l` + 0;
556 $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $COLog | wc -l` + 0;
557}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000558
559##############################################################
560#
561# Extract some information from the CVS history... use a hash so no duplicate
562# stuff is stored. This gets the history from the previous days worth
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000563# of cvs activity and parses it.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000564#
565##############################################################
566
Reid Spencer99e865a2007-04-07 04:41:16 +0000567# This just computes a reasonably accurate #of seconds since 2000. It doesn't
568# have to be perfect as its only used for comparing date ranges within a couple
569# of days.
570sub ConvertToSeconds {
571 my ($sec, $min, $hour, $day, $mon, $yr) = @_;
572 my $Result = ($yr - 2000) * 12;
573 $Result += $mon;
574 $Result *= 31;
575 $Result += $day;
576 $Result *= 24;
577 $Result += $hour;
578 $Result *= 60;
579 $Result += $min;
580 $Result *= 60;
581 $Result += $sec;
582 return $Result;
583}
584
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000585my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
586
Reid Spencer99e865a2007-04-07 04:41:16 +0000587if (!$NOCVSSTATS) {
588 if ($VERBOSE) { print "CHANGE HISTORY ANALYSIS STAGE\n"; }
Reid Spencer776964a2007-04-04 06:59:36 +0000589
Reid Spencer99e865a2007-04-07 04:41:16 +0000590 if ($USESVN) {
591 @SVNHistory = split /<logentry/, `svn log --xml --verbose -r{$DATE}:HEAD`;
592 # Skip very first entry because it is the XML header cruft
593 shift @SVNHistory;
594 my $Now = time();
595 foreach $Record (@SVNHistory) {
596 my @Lines = split "\n", $Record;
597 my ($Author, $Date, $Revision);
598 # Get the date and see if its one we want to process.
599 my ($Year, $Month, $Day, $Hour, $Min, $Sec);
600 if ($Lines[3] =~ /<date>(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/){
601 $Year = $1; $Month = $2; $Day = $3; $Hour = $4; $Min = $5; $Sec = $6;
602 }
603 my $Then = ConvertToSeconds($Sec, $Min, $Hour, $Day, $Month, $Year);
604 # Get the current date and compute when "yesterday" is.
605 my ($NSec, $NMin, $NHour, $NDay, $NMon, $NYear) = gmtime();
606 my $Now = ConvertToSeconds( $NSec, $NMin, $NHour, $NDay, $NMon, $NYear);
607 if (($Now - 24*60*60) > $Then) {
608 next;
609 }
610 if ($Lines[1] =~ / revision="([0-9]*)">/) {
611 $Revision = $1;
612 }
613 if ($Lines[2] =~ /<author>([^<]*)<\/author>/) {
614 $Author = $1;
615 }
616 $UsersCommitted{$Author} = 1;
617 $Date = $Year . "-" . $Month . "-" . $Day;
618 $Time = $Hour . ":" . $Min . ":" . $Sec;
619 print "Rev: $Revision, Author: $Author, Date: $Date, Time: $Time\n";
620 for ($i = 6; $i < $#Lines; $i += 2 ) {
621 if ($Lines[$i] =~ /^ action="(.)">([^<]*)</) {
622 if ($1 == "A") {
623 $AddedFiles{$2} = 1;
624 } elsif ($1 == 'D') {
625 $RemovedFiles{$2} = 1;
626 } elsif ($1 == 'M' || $1 == 'R' || $1 == 'C') {
627 $ModifiedFiles{$2} = 1;
628 } else {
629 print "UNMATCHABLE: $Lines[$i]\n";
630 }
631 }
632 }
633 }
634 } else {
635 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000636#print join "\n", @CVSHistory; print "\n";
637
Reid Spencer99e865a2007-04-07 04:41:16 +0000638 my $DateRE = '[-/:0-9 ]+\+[0-9]+';
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000639
640# Loop over every record from the CVS history, filling in the hashes.
Reid Spencer99e865a2007-04-07 04:41:16 +0000641 foreach $File (@CVSHistory) {
642 my ($Type, $Date, $UID, $Rev, $Filename);
643 if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
644 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
645 } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
646 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
647 } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
648 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
649 } else {
650 print "UNMATCHABLE: $File\n";
651 next;
652 }
653 # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
654
655 if ($Filename =~ /^llvm/) {
656 if ($Type eq 'M') { # Modified
657 $ModifiedFiles{$Filename} = 1;
658 $UsersCommitted{$UID} = 1;
659 } elsif ($Type eq 'A') { # Added
660 $AddedFiles{$Filename} = 1;
661 $UsersCommitted{$UID} = 1;
662 } elsif ($Type eq 'R') { # Removed
663 $RemovedFiles{$Filename} = 1;
664 $UsersCommitted{$UID} = 1;
665 } else {
666 $UsersUpdated{$UID} = 1;
667 }
668 }
669 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000670
Reid Spencer99e865a2007-04-07 04:41:16 +0000671 my $TestError = 1;
672 } #$USESVN
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000673}#!NOCVSSTATS
674
675my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
676my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
677my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
678my $UserCommitList = join "\n", sort keys %UsersCommitted;
679my $UserUpdateList = join "\n", sort keys %UsersUpdated;
680
681##############################################################
682#
683# Build the entire tree, saving build messages to the build log
684#
685##############################################################
686if (!$NOCHECKOUT && !$NOBUILD) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000687 my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
688 if ( $VERBOSE ) {
689 print "CONFIGURE STAGE:\n";
690 print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
691 "> $BuildLog 2>&1\n";
692 }
693 system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
694 "> $BuildLog 2>&1";
695 if ( $VERBOSE ) {
696 print "BUILD STAGE:\n";
697 print "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1\n";
698 }
699 # Build the entire tree, capturing the output into $BuildLog
700 system "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000701}
702
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000703##############################################################
704#
705# Get some statistics about the build...
706#
707##############################################################
708#this can de done on server
709#my @Linked = split '\n', `grep Linking $BuildLog`;
710#my $NumExecutables = scalar(grep(/executable/, @Linked));
711#my $NumLibraries = scalar(grep(!/executable/, @Linked));
712#my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
713
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000714# Get the number of lines of source code. Must be here after the build is done
715# because countloc.sh uses the llvm-config script which must be built.
Patrick Jenkinsb993b0a2006-08-16 22:18:41 +0000716my $LOC = `utils/countloc.sh -topdir $BuildDir/llvm`;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000717
718# Get the time taken by the configure script
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000719my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
720my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
721my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
722my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
723
724$ConfigTime=-1 unless $ConfigTime;
725$ConfigWallTime=-1 unless $ConfigWallTime;
726
727my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
728my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
729my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
730my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
731
732$BuildTime=-1 unless $BuildTime;
733$BuildWallTime=-1 unless $BuildWallTime;
734
735my $BuildError = 0, $BuildStatus = "OK";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000736if ($NOBUILD) {
737 $BuildStatus = "Skipped by user";
738 $BuildError = 1;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000739}
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000740elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000741 `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
742 $BuildStatus = "Error: compilation aborted";
743 $BuildError = 1;
744 if( $VERBOSE) { print "\n***ERROR BUILDING TREE\n\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000745}
746if ($BuildError) { $NODEJAGNU=1; }
747
Patrick Jenkins169357e2006-07-23 21:38:07 +0000748my $a_file_sizes="";
749my $o_file_sizes="";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000750if (!$BuildError) {
751 print "Organizing size of .o and .a files\n"
752 if ( $VERBOSE );
753 ChangeDir( "$BuildDir/llvm", "Build Directory" );
754 $afiles.= `find utils/ -iname '*.a' -ls`;
755 $afiles.= `find lib/ -iname '*.a' -ls`;
756 $afiles.= `find tools/ -iname '*.a' -ls`;
757 if($BUILDTYPE eq "release"){
Jim Laskey7a8efce2006-09-29 17:31:45 +0000758 $afiles.= `find Release/ -iname '*.a' -ls`;
Jim Laskey27b8ba02006-09-28 17:49:20 +0000759 } elsif($BUILDTYPE eq "release-asserts") {
760 $afiles.= `find Release-Asserts/ -iname '*.a' -ls`;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000761 } else {
762 $afiles.= `find Debug/ -iname '*.a' -ls`;
763 }
764
765 $ofiles.= `find utils/ -iname '*.o' -ls`;
766 $ofiles.= `find lib/ -iname '*.o' -ls`;
767 $ofiles.= `find tools/ -iname '*.o' -ls`;
768 if($BUILDTYPE eq "release"){
Jim Laskey7a8efce2006-09-29 17:31:45 +0000769 $ofiles.= `find Release/ -iname '*.o' -ls`;
Jim Laskey27b8ba02006-09-28 17:49:20 +0000770 } elsif($BUILDTYPE eq "release-asserts") {
771 $ofiles.= `find Release-Asserts/ -iname '*.o' -ls`;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000772 } else {
773 $ofiles.= `find Debug/ -iname '*.o' -ls`;
774 }
775
776 @AFILES = split "\n", $afiles;
777 $a_file_sizes="";
778 foreach $x (@AFILES){
779 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
780 $a_file_sizes.="$1 $2 $BUILDTYPE\n";
781 }
782 @OFILES = split "\n", $ofiles;
783 $o_file_sizes="";
784 foreach $x (@OFILES){
785 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
786 $o_file_sizes.="$1 $2 $BUILDTYPE\n";
787 }
788} else {
789 $a_file_sizes="No data due to a bad build.";
790 $o_file_sizes="No data due to a bad build.";
Patrick Jenkins169357e2006-07-23 21:38:07 +0000791}
Patrick Jenkins169357e2006-07-23 21:38:07 +0000792
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000793##############################################################
794#
795# Running dejagnu tests
796#
797##############################################################
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000798my $DejangnuTestResults=""; # String containing the results of the dejagnu
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000799my $dejagnu_output = "$DejagnuTestsLog";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000800if (!$NODEJAGNU) {
801 if($VERBOSE) {
802 print "DEJAGNU FEATURE/REGRESSION TEST STAGE:\n";
803 print "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1\n";
804 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000805
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000806 #Run the feature and regression tests, results are put into testrun.sum
807 #Full log in testrun.log
808 system "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1";
809
810 #Copy the testrun.log and testrun.sum to our webdir
811 CopyFile("test/testrun.log", $DejagnuLog);
812 CopyFile("test/testrun.sum", $DejagnuSum);
813 #can be done on server
814 $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
815 $unexpfail_tests = $DejagnuTestResults;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000816}
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000817
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000818#Extract time of dejagnu tests
819my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
820my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
821$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
822$DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000823$DejagnuTestResults =
824 "Dejagnu skipped by user choice." unless $DejagnuTestResults;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000825$DejagnuTime = "0.0" unless $DejagnuTime;
826$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
827
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000828##############################################################
829#
830# Get warnings from the build
831#
832##############################################################
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000833if (!$NODEJAGNU) {
834 if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
835 my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
836 my @Warnings;
837 my $CurDir = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000838
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000839 foreach $Warning (@Warn) {
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000840 if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000841 $CurDir = $1; # Keep track of directory warning is in...
842 # Remove buildir prefix if included
843 if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { $CurDir = $1; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000844 } else {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000845 push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000846 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000847 }
848 my $WarningsFile = join "\n", @Warnings;
849 $WarningsFile =~ s/:[0-9]+:/::/g;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000850
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000851 # Emit the warnings file, so we can diff...
852 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
853 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000854
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000855 # Output something to stdout if something has changed
856 #print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
857 #print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000858
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000859 #my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
860 #my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000861
862} #endif !NODEGAGNU
863
864##############################################################
865#
866# If we built the tree successfully, run the nightly programs tests...
867#
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000868# A set of tests to run is passed in (i.e. "SingleSource" "MultiSource"
869# "External")
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000870#
871##############################################################
872sub TestDirectory {
Patrick Jenkinsad6f7582006-08-22 18:11:19 +0000873 my $SubDir = shift;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000874 ChangeDir( "$BuildDir/llvm/projects/llvm-test/$SubDir",
875 "Programs Test Subdirectory" ) || return ("", "");
876
877 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
878
879 # Run the programs tests... creating a report.nightly.csv file
880 if (!$NOTEST) {
881 if( $VERBOSE) {
882 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
883 "TEST=nightly > $ProgramTestLog 2>&1\n";
884 }
885 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000886 "TEST=nightly > $ProgramTestLog 2>&1";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000887 $llcbeta_options=`$MAKECMD print-llcbeta-option`;
888 }
889
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000890 my $ProgramsTable;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000891 if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0) {
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000892 $TestError = 1;
893 $ProgramsTable="Error running test $SubDir\n";
894 print "ERROR TESTING\n";
895 } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
896 $TestError = 1;
897 $ProgramsTable="Makefile error running tests $SubDir!\n";
898 print "ERROR TESTING\n";
899 } else {
900 $TestError = 0;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000901 #
902 # Create a list of the tests which were run...
903 #
904 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000905 "| sort > $Prefix-$SubDir-Tests.txt";
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000906 }
907 $ProgramsTable = ReadFile "report.nightly.csv";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000908
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000909 ChangeDir( "../../..", "Programs Test Parent Directory" );
910 return ($ProgramsTable, $llcbeta_options);
Patrick Jenkins9e384ab2006-08-14 16:07:14 +0000911} #end sub TestDirectory
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000912
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000913##############################################################
914#
915# Calling sub TestDirectory
916#
917##############################################################
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000918if (!$BuildError) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000919 if ( $VERBOSE ) {
Patrick Jenkinse631c4a2006-08-04 17:55:01 +0000920 print "SingleSource TEST STAGE\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000921 }
922 ($SingleSourceProgramsTable, $llcbeta_options) =
923 TestDirectory("SingleSource");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000924 WriteFile "$Prefix-SingleSource-Performance.txt", $SingleSourceProgramsTable;
Patrick Jenkins4257ccb2006-08-08 02:03:53 +0000925 if ( $VERBOSE ) {
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000926 print "MultiSource TEST STAGE\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000927 }
928 ($MultiSourceProgramsTable, $llcbeta_options) = TestDirectory("MultiSource");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000929 WriteFile "$Prefix-MultiSource-Performance.txt", $MultiSourceProgramsTable;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000930 if ( ! $NOEXTERNALS ) {
931 if ( $VERBOSE ) {
932 print "External TEST STAGE\n";
933 }
934 ($ExternalProgramsTable, $llcbeta_options) = TestDirectory("External");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000935 WriteFile "$Prefix-External-Performance.txt", $ExternalProgramsTable;
936 system "cat $Prefix-SingleSource-Tests.txt " .
937 "$Prefix-MultiSource-Tests.txt ".
938 "$Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
939 system "cat $Prefix-SingleSource-Performance.txt " .
940 "$Prefix-MultiSource-Performance.txt ".
941 "$Prefix-External-Performance.txt | sort > $Prefix-Performance.txt";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000942 } else {
943 $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
944 if ( $VERBOSE ) {
945 print "External TEST STAGE SKIPPED\n";
946 }
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000947 system "cat $Prefix-SingleSource-Tests.txt " .
948 "$Prefix-MultiSource-Tests.txt ".
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000949 " | sort > $Prefix-Tests.txt";
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000950 system "cat $Prefix-SingleSource-Performance.txt " .
951 "$Prefix-MultiSource-Performance.txt ".
952 " | sort > $Prefix-Performance.txt";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000953 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000954
Patrick Jenkinsad6f7582006-08-22 18:11:19 +0000955 ##############################################################
956 #
957 #
958 # gathering tests added removed broken information here
959 #
960 #
961 ##############################################################
962 my $dejagnu_test_list = ReadFile "$Prefix-Tests.txt";
963 my @DEJAGNU = split "\n", $dejagnu_test_list;
964 my ($passes, $fails, $xfails) = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000965
Patrick Jenkinsad6f7582006-08-22 18:11:19 +0000966 if(!$NODEJAGNU) {
967 for ($x=0; $x<@DEJAGNU; $x++) {
968 if ($DEJAGNU[$x] =~ m/^PASS:/) {
969 $passes.="$DEJAGNU[$x]\n";
970 }
971 elsif ($DEJAGNU[$x] =~ m/^FAIL:/) {
972 $fails.="$DEJAGNU[$x]\n";
973 }
974 elsif ($DEJAGNU[$x] =~ m/^XFAIL:/) {
975 $xfails.="$DEJAGNU[$x]\n";
976 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000977 }
978 }
Patrick Jenkinsad6f7582006-08-22 18:11:19 +0000979
980} #end if !$BuildError
981
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000982
983##############################################################
984#
985# If we built the tree successfully, runs of the Olden suite with
986# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
987#
988##############################################################
989if (!$BuildError) {
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000990 if ( $VERBOSE ) { print "OLDEN TEST SUITE STAGE\n"; }
991 my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
992 $MachCodeSize) = ("","","","","","","");
993 if (!$NORUNNINGTESTS) {
994 ChangeDir( "$BuildDir/llvm/projects/llvm-test/MultiSource/Benchmarks/Olden",
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000995 "Olden Test Directory");
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000996
Patrick Jenkinsd7210f92006-08-02 18:37:40 +0000997 # Clean out previous results...
998 system "$NICE $MAKECMD $MAKEOPTS clean > /dev/null 2>&1";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000999
Patrick Jenkinsd7210f92006-08-02 18:37:40 +00001000 # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE and
1001 # GET_STABLE_NUMBERS enabled!
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001002 if( $VERBOSE ) {
1003 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out " .
1004 "TEST=nightly LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 " .
1005 "> /dev/null 2>&1\n";
1006 }
1007 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out " .
1008 "TEST=nightly LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 " .
1009 "> /dev/null 2>&1";
1010 system "cp report.nightly.csv $OldenTestsLog";
Patrick Jenkinsd7210f92006-08-02 18:37:40 +00001011 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001012}
1013
Patrick Jenkins215b48f2006-07-07 18:50:51 +00001014##############################################################
1015#
1016# Getting end timestamp
1017#
1018##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +00001019$endtime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkins215b48f2006-07-07 18:50:51 +00001020
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001021
1022##############################################################
1023#
1024# Place all the logs neatly into one humungous file
1025#
1026##############################################################
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001027if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
1028
1029$machine_data = "uname: ".`uname -a`.
1030 "hardware: ".`uname -m`.
1031 "os: ".`uname -sr`.
1032 "name: ".`uname -n`.
1033 "date: ".`date \"+20%y-%m-%d\"`.
1034 "time: ".`date +\"%H:%M:%S\"`;
1035
1036my @CVS_DATA;
1037my $cvs_data;
Reid Spencer99e865a2007-04-07 04:41:16 +00001038@CVS_DATA = ReadFile "$COLog";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001039$cvs_data = join("\n", @CVS_DATA);
1040
1041my @BUILD_DATA;
1042my $build_data;
1043@BUILD_DATA = ReadFile "$BuildLog";
1044$build_data = join("\n", @BUILD_DATA);
1045
Patrick Jenkins03137752006-08-21 20:45:57 +00001046my (@DEJAGNU_LOG, @DEJAGNU_SUM, @DEJAGNULOG_FULL, @GCC_VERSION);
1047my ($dejagnutests_log ,$dejagnutests_sum, $dejagnulog_full) = "";
1048my ($gcc_version, $gcc_version_long) = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001049
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001050$gcc_version_long="";
1051if ($GCCPATH ne "") {
1052 $gcc_version_long = `$GCCPATH/gcc --version`;
1053} else {
1054 $gcc_version_long = `gcc --version`;
1055}
1056@GCC_VERSION = split '\n', $gcc_version_long;
1057$gcc_version = $GCC_VERSION[0];
1058
Patrick Jenkins03137752006-08-21 20:45:57 +00001059if(!$BuildError){
1060 @DEJAGNU_LOG = ReadFile "$DejagnuLog";
1061 @DEJAGNU_SUM = ReadFile "$DejagnuSum";
1062 $dejagnutests_log = join("\n", @DEJAGNU_LOG);
1063 $dejagnutests_sum = join("\n", @DEJAGNU_SUM);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001064
Patrick Jenkins03137752006-08-21 20:45:57 +00001065 @DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
1066 $dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
Patrick Jenkins79fbf7f2006-07-14 20:44:09 +00001067}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001068
1069##############################################################
1070#
1071# Send data via a post request
1072#
1073##############################################################
1074
1075if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
1076
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001077my %hash_of_data = (
1078 'machine_data' => $machine_data,
1079 'build_data' => $build_data,
1080 'gcc_version' => $gcc_version,
1081 'nickname' => $nickname,
1082 'dejagnutime_wall' => $DejagnuWallTime,
1083 'dejagnutime_cpu' => $DejagnuTime,
Reid Spencer99e865a2007-04-07 04:41:16 +00001084 'cvscheckouttime_wall' => $CheckoutTime_Wall,
1085 'cvscheckouttime_cpu' => $CheckoutTime_CPU,
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001086 'configtime_wall' => $ConfigWallTime,
1087 'configtime_cpu'=> $ConfigTime,
1088 'buildtime_wall' => $BuildWallTime,
1089 'buildtime_cpu' => $BuildTime,
1090 'warnings' => $WarningsFile,
1091 'cvsusercommitlist' => $UserCommitList,
1092 'cvsuserupdatelist' => $UserUpdateList,
1093 'cvsaddedfiles' => $CVSAddedFiles,
1094 'cvsmodifiedfiles' => $CVSModifiedFiles,
1095 'cvsremovedfiles' => $CVSRemovedFiles,
1096 'lines_of_code' => $LOC,
1097 'cvs_file_count' => $NumFilesInCVS,
1098 'cvs_dir_count' => $NumDirsInCVS,
1099 'buildstatus' => $BuildStatus,
1100 'singlesource_programstable' => $SingleSourceProgramsTable,
1101 'multisource_programstable' => $MultiSourceProgramsTable,
1102 'externalsource_programstable' => $ExternalProgramsTable,
1103 'llcbeta_options' => $multisource_llcbeta_options,
1104 'warnings_removed' => $WarningsRemoved,
1105 'warnings_added' => $WarningsAdded,
1106 'passing_tests' => $passes,
1107 'expfail_tests' => $xfails,
1108 'unexpfail_tests' => $fails,
1109 'all_tests' => $dejagnu_test_list,
1110 'new_tests' => "",
1111 'removed_tests' => "",
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +00001112 'dejagnutests_results' => $DejagnuTestResults,
1113 'dejagnutests_log' => $dejagnulog_full,
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001114 'starttime' => $starttime,
1115 'endtime' => $endtime,
1116 'o_file_sizes' => $o_file_sizes,
1117 'a_file_sizes' => $a_file_sizes
1118);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001119
1120$TESTING = 0;
1121
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001122if ($TESTING) {
1123 print "============================\n";
1124 foreach $x(keys %hash_of_data){
1125 print "$x => $hash_of_data{$x}\n";
1126 }
1127} else {
1128 my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
1129 if( $VERBOSE) { print "============================\n$response"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001130}
1131
1132##############################################################
1133#
1134# Remove the cvs tree...
1135#
1136##############################################################
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001137system ( "$NICE rm -rf $BuildDir")
1138 if (!$NOCHECKOUT and !$NOREMOVE);
1139system ( "$NICE rm -rf $WebDir")
1140 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);