blob: dc6cf6d17f5251d93e0c0aa5ecfc84b7e59b80ed [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001#!/usr/bin/perl
2use 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
Misha Brukmanafa1e862009-01-02 16:28:18 +000011# regressions and performance changes. Submits this information
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012# to llvm.org where it is placed into the nightlytestresults database.
13#
14# Modified heavily by Patrick Jenkins, July 2006
15#
16# Syntax: NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
17# where
18# OPTIONS may include one or more of the following:
19# -nocheckout Do not create, checkout, update, or configure
20# the source tree.
21# -noremove Do not remove the BUILDDIR after it has been built.
22# -noremoveresults Do not remove the WEBDIR after it has been built.
23# -nobuild Do not build llvm. If tests are enabled perform them
24# on the llvm build specified in the build directory
25# -notest Do not even attempt to run the test programs. Implies
26# -norunningtests.
27# -norunningtests Do not run the Olden benchmark suite with
28# LARGE_PROBLEM_SIZE enabled.
29# -nodejagnu Do not run feature or regression tests
30# -parallel Run two parallel jobs with GNU Make.
31# -release Build an LLVM Release version
32# -release-asserts Build an LLVM ReleaseAsserts version
33# -enable-llcbeta Enable testing of beta features in llc.
34# -enable-lli Enable testing of lli (interpreter) features, default is off
35# -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.
Evan Cheng32efae02008-01-12 04:27:18 +000038# -disable-lto Disable link time optimization.
Daniel Dunbar31a1f1c2009-03-10 19:33:13 +000039# -disable-bindings Disable building LLVM bindings.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040# -verbose Turn on some debug output
41# -debug Print information useful only to maintainers of this script.
42# -nice Checkout/Configure/Build with "nice" to reduce impact
43# on busy servers.
44# -f2c Next argument specifies path to F2C utility
45# -nickname The next argument specifieds the nickname this script
46# will submit to the nightlytest results repository.
47# -gccpath Path to gcc/g++ used to build LLVM
48# -cvstag Check out a specific CVS tag to build LLVM (useful for
49# testing release branches)
50# -usecvs Check code out from the (old) CVS Repository instead of from
51# the standard Subversion repository.
52# -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.
59# -compileflags Next argument specifies extra options passed to make when
60# building LLVM.
61# -use-gmake Use gmake instead of the default make command to build
62# llvm and run tests.
63#
64# ---------------- Options to configure llvm-test ----------------------------
65# -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.
70# -submit-server Specifies a server to submit the test results too. If this
Misha Brukmanafa1e862009-01-02 16:28:18 +000071# option is not specified it defaults to
72# llvm.org. This is basically just the address of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073# webserver
74# -submit-script Specifies which script to call on the submit server. If
75# this option is not specified it defaults to
Misha Brukmanafa1e862009-01-02 16:28:18 +000076# /nightlytest/NightlyTestAccept.php. This is basically
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077# everything after the www.yourserver.org.
Daniel Dunbar016a4bb2009-05-18 23:24:26 +000078# -submit-aux If specified, an auxiliary script to run in addition to the
79# normal submit script. The script will be passed the path to
80# the "sentdata.txt" file as its sole argument.
Tanya Lattner084a3ee2008-03-10 07:28:08 +000081# -nosubmit Do not report the test results back to a submit server.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082#
83# CVSROOT is the CVS repository from which the tree will be checked out,
84# specified either in the full :method:user@host:/dir syntax, or
85# just /dir if using a local repo.
86# BUILDDIR is the directory where sources for this test run will be checked out
87# AND objects for this test run will be built. This directory MUST NOT
88# exist before the script is run; it will be created by the cvs checkout
89# process and erased (unless -noremove is specified; see above.)
90# WEBDIR is the directory into which the test results web page will be written,
91# AND in which the "index.html" is assumed to be a symlink to the most recent
92# copy of the results. This directory will be created if it does not exist.
93# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
94# to. This is the same as you would have for a normal LLVM build.
95#
96##############################################################
97#
98# Getting environment variables
99#
100##############################################################
101my $HOME = $ENV{'HOME'};
102my $SVNURL = $ENV{"SVNURL"};
103$SVNURL = 'https://llvm.org/svn/llvm-project' unless $SVNURL;
104my $CVSRootDir = $ENV{'CVSROOT'};
105$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
106my $BuildDir = $ENV{'BUILDDIR'};
107$BuildDir = "$HOME/buildtest" unless $BuildDir;
108my $WebDir = $ENV{'WEBDIR'};
109$WebDir = "$HOME/cvs/testresults-X86" unless $WebDir;
110
111##############################################################
112#
113# Calculate the date prefix...
114#
115##############################################################
116@TIME = localtime;
117my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
118my $DateString = strftime "%B %d, %Y", localtime;
119my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
120
121##############################################################
122#
123# Parse arguments...
124#
125##############################################################
126$CONFIGUREARGS="";
127$nickname="";
128$NOTEST=0;
129$USESVN=1;
130$NORUNNINGTESTS=0;
131$MAKECMD="make";
132$SUBMITSERVER = "llvm.org";
133$SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.php";
Daniel Dunbar016a4bb2009-05-18 23:24:26 +0000134$SUBMITAUX="";
Tanya Lattner084a3ee2008-03-10 07:28:08 +0000135$SUBMIT = 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136
137while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
138 shift;
139 last if /^--$/; # Stop processing arguments on --
140
141 # List command line options here...
142 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
143 if (/^-nocvsstats$/) { $NOCVSSTATS = 1; next; }
144 if (/^-noremove$/) { $NOREMOVE = 1; next; }
145 if (/^-noremoveresults$/){ $NOREMOVERESULTS = 1; next; }
146 if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
147 if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
148 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
149 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
150 "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
151 if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
Dan Gohmanbd399762008-10-30 01:08:03 +0000152 "DISABLE_ASSERTIONS=1 ".
Misha Brukmanafa1e862009-01-02 16:28:18 +0000153 "OPTIMIZE_OPTION=-O2";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 $BUILDTYPE="release-asserts"; next;}
155 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
156 if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000157 $CONFIGUREARGS .= " --enable-lli"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000159 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
161 $CONFIGUREARGS .= " --disable-jit"; next; }
Daniel Dunbar31a1f1c2009-03-10 19:33:13 +0000162 if (/^-disable-bindings$/) { $CONFIGUREARGS .= " --disable-bindings"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
Evan Cheng32efae02008-01-12 04:27:18 +0000164 if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
Evan Cheng08206772008-01-14 17:58:03 +0000165 if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 if (/^-verbose$/) { $VERBOSE = 1; next; }
167 if (/^-debug$/) { $DEBUG = 1; next; }
168 if (/^-nice$/) { $NICE = "nice "; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000169 if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000171 if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 shift; next; }
173 if (/^-submit-server/) { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
174 if (/^-submit-script/) { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
Daniel Dunbar016a4bb2009-05-18 23:24:26 +0000175 if (/^-submit-aux/) { $SUBMITAUX = "$ARGV[0]"; shift; next; }
Tanya Lattner084a3ee2008-03-10 07:28:08 +0000176 if (/^-nosubmit$/) { $SUBMIT = 0; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000177 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
178 if (/^-gccpath/) { $CONFIGUREARGS .=
179 " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 $GCCPATH=$ARGV[0]; shift; next; }
181 else { $GCCPATH=""; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000182 if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 else { $CVSCOOPT="";}
184 if (/^-usecvs/) { $USESVN = 0; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000185 if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000187 if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000189 if (/^-cxxflags/) { $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000191 if (/^-ldflags/) { $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 shift; next; }
193 if (/^-compileflags/) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
194 if (/^-use-gmake/) { $MAKECMD = "gmake"; shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000195 if (/^-extraflags/) { $CONFIGUREARGS .=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 " --with-extra-options=\'$ARGV[0]\'"; shift; next;}
197 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
198 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
199 if (/^-nobuild$/) { $NOBUILD = 1; next; }
200 print "Unknown option: $_ : ignoring!\n";
201}
202
203if ($ENV{'LLVMGCCDIR'}) {
204 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
Bob Wilsonc6d296b2009-03-12 19:47:24 +0000205 $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206}
207else {
208 $LLVMGCCPATH = "";
209}
210
211if ($CONFIGUREARGS !~ /--disable-jit/) {
212 $CONFIGUREARGS .= " --enable-jit";
213}
214
215if (@ARGV != 0 and @ARGV != 3 and $VERBOSE) {
216 foreach $x (@ARGV) {
217 print "$x\n";
218 }
219 print "Must specify 0 or 3 options!";
220}
221
222if (@ARGV == 3) {
223 $CVSRootDir = $ARGV[0];
224 $BuildDir = $ARGV[1];
225 $WebDir = $ARGV[2];
226}
227
228if ($CVSRootDir eq "" or
229 $BuildDir eq "" or
230 $WebDir eq "") {
231 die("please specify a cvs root directory, a build directory, and a ".
232 "web directory");
233 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000234
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235if ($nickname eq "") {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000236 die ("Please invoke NewNightlyTest.pl with command line option " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 "\"-nickname <nickname>\"");
238}
239
240if ($BUILDTYPE ne "release" && $BUILDTYPE ne "release-asserts") {
241 $BUILDTYPE = "debug";
242}
243
244##############################################################
245#
246#define the file names we'll use
247#
248##############################################################
249my $Prefix = "$WebDir/$DATE";
250my $BuildLog = "$Prefix-Build-Log.txt";
251my $COLog = "$Prefix-CVS-Log.txt";
252my $OldenTestsLog = "$Prefix-Olden-tests.txt";
253my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
254my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
255my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
256my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
257my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
258my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
259if (! -d $WebDir) {
260 mkdir $WebDir, 0777;
261 if($VERBOSE){
262 warn "$WebDir did not exist; creating it.\n";
263 }
264}
265
266if ($VERBOSE) {
267 print "INITIALIZED\n";
268 if ($USESVN) {
269 print "SVN URL = $SVNURL\n";
270 } else {
271 print "CVS Root = $CVSRootDir\n";
272 }
273 print "COLog = $COLog\n";
274 print "BuildDir = $BuildDir\n";
275 print "WebDir = $WebDir\n";
276 print "Prefix = $Prefix\n";
277 print "BuildLog = $BuildLog\n";
278}
279
280##############################################################
281#
282# Helper functions
283#
284##############################################################
285sub GetDir {
286 my $Suffix = shift;
287 opendir DH, $WebDir;
288 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
289 closedir DH;
290 return @Result;
291}
292
293#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
294#
295# DiffFiles - Diff the current version of the file against the last version of
296# the file, reporting things added and removed. This is used to report, for
297# example, added and removed warnings. This returns a pair (added, removed)
298#
299#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
300sub DiffFiles {
301 my $Suffix = shift;
302 my @Others = GetDir $Suffix;
303 if (@Others == 0) { # No other files? We added all entries...
304 return (`cat $WebDir/$DATE$Suffix`, "");
305 }
306# Diff the files now...
307 my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
308 my $Added = join "\n", grep /^</, @Diffs;
309 my $Removed = join "\n", grep /^>/, @Diffs;
310 $Added =~ s/^< //gm;
311 $Removed =~ s/^> //gm;
312 return ($Added, $Removed);
313}
314
315#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
316#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
317sub GetRegex { # (Regex with ()'s, value)
318 $_[1] =~ /$_[0]/m;
Misha Brukmanafa1e862009-01-02 16:28:18 +0000319 return $1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 if (defined($1));
321 return "0";
322}
323
324#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
325#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
326sub GetRegexNum {
327 my ($Regex, $Num, $Regex2, $File) = @_;
328 my @Items = split "\n", `grep '$Regex' $File`;
329 return GetRegex $Regex2, $Items[$Num];
330}
331
332#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
333#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
334sub ChangeDir { # directory, logical name
335 my ($dir,$name) = @_;
336 chomp($dir);
337 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
338 $result = chdir($dir);
339 if (!$result) {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000340 print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 return false;
342 }
343 return true;
344}
345
346#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
347#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
348sub ReadFile {
349 if (open (FILE, $_[0])) {
350 undef $/;
351 my $Ret = <FILE>;
352 close FILE;
353 $/ = '\n';
354 return $Ret;
355 } else {
356 print "Could not open file '$_[0]' for reading!\n";
357 return "";
358 }
359}
360
361#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
362#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
363sub WriteFile { # (filename, contents)
364 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
365 print FILE $_[1];
366 close FILE;
367}
368
369#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
370#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
371sub CopyFile { #filename, newfile
372 my ($file, $newfile) = @_;
373 chomp($file);
374 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
375 copy($file, $newfile);
376}
377
378#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
379#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
380sub AddRecord {
381 my ($Val, $Filename,$WebDir) = @_;
382 my @Records;
383 if (open FILE, "$WebDir/$Filename") {
384 @Records = grep !/$DATE/, split "\n", <FILE>;
385 close FILE;
386 }
387 push @Records, "$DATE: $Val";
388 WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
389}
390
391#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
392#
393# FormatTime - Convert a time from 1m23.45 into 83.45
394#
395#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
396sub FormatTime {
397 my $Time = shift;
398 if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
399 $Time = sprintf("%7.4f", $1*60.0+$2);
400 }
401 return $Time;
402}
403
404#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
405#
Misha Brukmanafa1e862009-01-02 16:28:18 +0000406# This function is meant to read in the dejagnu sum file and
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407# return a string with only the results (i.e. PASS/FAIL/XPASS/
408# XFAIL).
409#
410#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
411sub GetDejagnuTestResults { # (filename, log)
412 my ($filename, $DejagnuLog) = @_;
413 my @lines;
414 $/ = "\n"; #Make sure we're going line at a time.
415
416 if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
417
418 if (open SRCHFILE, $filename) {
419 # Process test results
420 while ( <SRCHFILE> ) {
421 if ( length($_) > 1 ) {
422 chomp($_);
423 if ( m/^(PASS|XPASS|FAIL|XFAIL): .*\/llvm\/test\/(.*)$/ ) {
424 push(@lines, "$1: test/$2");
425 }
426 }
427 }
428 }
429 close SRCHFILE;
430
431 my $content = join("\n", @lines);
432 return $content;
433}
434
435
436
437#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
438#
439# This function acts as a mini web browswer submitting data
440# to our central server via the post method
441#
442#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
443sub SendData{
444 $host = $_[0];
445 $file = $_[1];
446 $variables=$_[2];
447
448 $port=80;
449 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000450 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 die "Bad socket\n";
452 connect SOCK, $socketaddr or die "Bad connection\n";
453 select((select(SOCK), $| = 1)[0]);
454
455 #creating content here
456 my $content;
457 foreach $key (keys (%$variables)){
458 $value = $variables->{$key};
459 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
460 $content .= "$key=$value&";
461 }
462
463 $length = length($content);
464
465 my $send= "POST $file HTTP/1.0\n";
466 $send.= "Host: $host\n";
467 $send.= "Content-Type: application/x-www-form-urlencoded\n";
468 $send.= "Content-length: $length\n\n";
469 $send.= "$content";
470
471 print SOCK $send;
472 my $result;
473 while(<SOCK>){
474 $result .= $_;
475 }
476 close(SOCK);
477
478 my $sentdata="";
479 foreach $x (keys (%$variables)){
480 $value = $variables->{$x};
481 $sentdata.= "$x => $value\n";
482 }
483 WriteFile "$Prefix-sentdata.txt", $sentdata;
Misha Brukmanafa1e862009-01-02 16:28:18 +0000484
Daniel Dunbar016a4bb2009-05-18 23:24:26 +0000485 if (!($SUBMITAUX eq "")) {
486 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
487 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488
489 return $result;
490}
491
492##############################################################
493#
494# Getting Start timestamp
495#
496##############################################################
497$starttime = `date "+20%y-%m-%d %H:%M:%S"`;
498
499##############################################################
500#
501# Create the CVS repository directory
502#
503##############################################################
504if (!$NOCHECKOUT) {
505 if (-d $BuildDir) {
506 if (!$NOREMOVE) {
507 if ( $VERBOSE ) {
508 print "Build directory exists! Removing it\n";
509 }
510 system "rm -rf $BuildDir";
511 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
512 } else {
513 if ( $VERBOSE ) {
514 print "Build directory exists!\n";
515 }
516 }
517 } else {
518 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
519 }
520}
521ChangeDir( $BuildDir, "checkout directory" );
522
523
524##############################################################
525#
Misha Brukmanafa1e862009-01-02 16:28:18 +0000526# Check out the llvm tree, using either SVN or CVS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527#
528##############################################################
529if (!$NOCHECKOUT) {
530 if ( $VERBOSE ) { print "CHECKOUT STAGE:\n"; }
531 if ($USESVN) {
532 my $SVNCMD = "$NICE svn co $SVNURL";
533 if ($VERBOSE) {
534 print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
535 "$SVNCMD/test-suite/trunk llvm-test ) > $COLog 2>&1\n";
536 }
537 system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
538 "$SVNCMD/test-suite/trunk llvm-test ) > $COLog 2>&1\n";
539 } else {
540 my $CVSOPT = "";
541 $CVSOPT = "-z3" # Use compression if going over ssh.
542 if $CVSRootDir =~ /^:ext:/;
543 my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co -P $CVSCOOPT";
544 if ($VERBOSE) {
545 print "( time -p $CVSCMD llvm; cd llvm/projects ; " .
546 "$CVSCMD llvm-test ) > $COLog 2>&1\n";
547 }
548 system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
549 "$CVSCMD llvm-test ) > $COLog 2>&1\n";
550 }
551}
552ChangeDir( $BuildDir , "Checkout directory") ;
553ChangeDir( "llvm" , "llvm source directory") ;
554
555##############################################################
556#
557# Get some static statistics about the current state of CVS
558#
559# This can probably be put on the server side
560#
561##############################################################
562my $CheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $COLog`;
563my $CheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $COLog`;
564my $CheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $COLog`;
565my $CheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
566
567my $NumFilesInCVS = 0;
568my $NumDirsInCVS = 0;
569if ($USESVN) {
570 $NumFilesInCVS = `egrep '^A' $COLog | wc -l` + 0;
Nick Lewyckye45e2c82008-06-05 12:54:44 +0000571 $NumDirsInCVS = `sed -e 's#/[^/]*\$##' $COLog | sort | uniq | wc -l` + 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572} else {
573 $NumFilesInCVS = `egrep '^U' $COLog | wc -l` + 0;
574 $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $COLog | wc -l` + 0;
575}
576
577##############################################################
578#
579# Extract some information from the CVS history... use a hash so no duplicate
580# stuff is stored. This gets the history from the previous days worth
581# of cvs activity and parses it.
582#
583##############################################################
584
585# This just computes a reasonably accurate #of seconds since 2000. It doesn't
586# have to be perfect as its only used for comparing date ranges within a couple
587# of days.
588sub ConvertToSeconds {
589 my ($sec, $min, $hour, $day, $mon, $yr) = @_;
590 my $Result = ($yr - 2000) * 12;
591 $Result += $mon;
592 $Result *= 31;
593 $Result += $day;
594 $Result *= 24;
595 $Result += $hour;
596 $Result *= 60;
597 $Result += $min;
598 $Result *= 60;
599 $Result += $sec;
600 return $Result;
601}
602
603my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
604
605if (!$NOCVSSTATS) {
606 if ($VERBOSE) { print "CHANGE HISTORY ANALYSIS STAGE\n"; }
607
608 if ($USESVN) {
609 @SVNHistory = split /<logentry/, `svn log --xml --verbose -r{$DATE}:HEAD`;
610 # Skip very first entry because it is the XML header cruft
611 shift @SVNHistory;
612 my $Now = time();
613 foreach $Record (@SVNHistory) {
614 my @Lines = split "\n", $Record;
615 my ($Author, $Date, $Revision);
616 # Get the date and see if its one we want to process.
617 my ($Year, $Month, $Day, $Hour, $Min, $Sec);
618 if ($Lines[3] =~ /<date>(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/){
619 $Year = $1; $Month = $2; $Day = $3; $Hour = $4; $Min = $5; $Sec = $6;
620 }
621 my $Then = ConvertToSeconds($Sec, $Min, $Hour, $Day, $Month, $Year);
622 # Get the current date and compute when "yesterday" is.
623 my ($NSec, $NMin, $NHour, $NDay, $NMon, $NYear) = gmtime();
624 my $Now = ConvertToSeconds( $NSec, $NMin, $NHour, $NDay, $NMon, $NYear);
625 if (($Now - 24*60*60) > $Then) {
626 next;
627 }
628 if ($Lines[1] =~ / revision="([0-9]*)">/) {
629 $Revision = $1;
630 }
631 if ($Lines[2] =~ /<author>([^<]*)<\/author>/) {
632 $Author = $1;
633 }
634 $UsersCommitted{$Author} = 1;
635 $Date = $Year . "-" . $Month . "-" . $Day;
636 $Time = $Hour . ":" . $Min . ":" . $Sec;
637 print "Rev: $Revision, Author: $Author, Date: $Date, Time: $Time\n";
638 for ($i = 6; $i < $#Lines; $i += 2 ) {
639 if ($Lines[$i] =~ /^ action="(.)">([^<]*)</) {
640 if ($1 == "A") {
641 $AddedFiles{$2} = 1;
642 } elsif ($1 == 'D') {
643 $RemovedFiles{$2} = 1;
644 } elsif ($1 == 'M' || $1 == 'R' || $1 == 'C') {
645 $ModifiedFiles{$2} = 1;
646 } else {
647 print "UNMATCHABLE: $Lines[$i]\n";
648 }
649 }
650 }
651 }
652 } else {
653 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
654#print join "\n", @CVSHistory; print "\n";
655
656 my $DateRE = '[-/:0-9 ]+\+[0-9]+';
657
658# Loop over every record from the CVS history, filling in the hashes.
659 foreach $File (@CVSHistory) {
660 my ($Type, $Date, $UID, $Rev, $Filename);
661 if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
662 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
663 } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
664 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
665 } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
666 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
667 } else {
668 print "UNMATCHABLE: $File\n";
669 next;
670 }
671 # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000672
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 if ($Filename =~ /^llvm/) {
674 if ($Type eq 'M') { # Modified
675 $ModifiedFiles{$Filename} = 1;
676 $UsersCommitted{$UID} = 1;
677 } elsif ($Type eq 'A') { # Added
678 $AddedFiles{$Filename} = 1;
679 $UsersCommitted{$UID} = 1;
680 } elsif ($Type eq 'R') { # Removed
681 $RemovedFiles{$Filename} = 1;
682 $UsersCommitted{$UID} = 1;
683 } else {
684 $UsersUpdated{$UID} = 1;
685 }
686 }
687 }
688
689 my $TestError = 1;
690 } #$USESVN
691}#!NOCVSSTATS
692
693my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
694my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
695my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
696my $UserCommitList = join "\n", sort keys %UsersCommitted;
697my $UserUpdateList = join "\n", sort keys %UsersUpdated;
698
699##############################################################
700#
701# Build the entire tree, saving build messages to the build log
702#
703##############################################################
704if (!$NOCHECKOUT && !$NOBUILD) {
705 my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
706 if ( $VERBOSE ) {
707 print "CONFIGURE STAGE:\n";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000708 print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709 "> $BuildLog 2>&1\n";
710 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000711 system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712 "> $BuildLog 2>&1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000713 if ( $VERBOSE ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 print "BUILD STAGE:\n";
715 print "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1\n";
716 }
717 # Build the entire tree, capturing the output into $BuildLog
718 system "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1";
719}
720
721##############################################################
722#
723# Get some statistics about the build...
724#
725##############################################################
726#this can de done on server
727#my @Linked = split '\n', `grep Linking $BuildLog`;
728#my $NumExecutables = scalar(grep(/executable/, @Linked));
729#my $NumLibraries = scalar(grep(!/executable/, @Linked));
730#my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
731
732# Get the number of lines of source code. Must be here after the build is done
733# because countloc.sh uses the llvm-config script which must be built.
734my $LOC = `utils/countloc.sh -topdir $BuildDir/llvm`;
735
736# Get the time taken by the configure script
737my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
738my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
739my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
740my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
741
742$ConfigTime=-1 unless $ConfigTime;
743$ConfigWallTime=-1 unless $ConfigWallTime;
744
745my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
746my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
747my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
748my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
749
750$BuildTime=-1 unless $BuildTime;
751$BuildWallTime=-1 unless $BuildWallTime;
752
753my $BuildError = 0, $BuildStatus = "OK";
754if ($NOBUILD) {
755 $BuildStatus = "Skipped by user";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756}
757elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
758 `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
759 $BuildStatus = "Error: compilation aborted";
760 $BuildError = 1;
761 if( $VERBOSE) { print "\n***ERROR BUILDING TREE\n\n"; }
762}
763if ($BuildError) { $NODEJAGNU=1; }
764
765my $a_file_sizes="";
766my $o_file_sizes="";
767if (!$BuildError) {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000768 print "Organizing size of .o and .a files\n"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 if ( $VERBOSE );
770 ChangeDir( "$BuildDir/llvm", "Build Directory" );
771 $afiles.= `find utils/ -iname '*.a' -ls`;
772 $afiles.= `find lib/ -iname '*.a' -ls`;
773 $afiles.= `find tools/ -iname '*.a' -ls`;
774 if($BUILDTYPE eq "release"){
775 $afiles.= `find Release/ -iname '*.a' -ls`;
776 } elsif($BUILDTYPE eq "release-asserts") {
777 $afiles.= `find Release-Asserts/ -iname '*.a' -ls`;
778 } else {
779 $afiles.= `find Debug/ -iname '*.a' -ls`;
780 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000781
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782 $ofiles.= `find utils/ -iname '*.o' -ls`;
783 $ofiles.= `find lib/ -iname '*.o' -ls`;
784 $ofiles.= `find tools/ -iname '*.o' -ls`;
785 if($BUILDTYPE eq "release"){
786 $ofiles.= `find Release/ -iname '*.o' -ls`;
787 } elsif($BUILDTYPE eq "release-asserts") {
788 $ofiles.= `find Release-Asserts/ -iname '*.o' -ls`;
789 } else {
790 $ofiles.= `find Debug/ -iname '*.o' -ls`;
791 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000792
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 @AFILES = split "\n", $afiles;
794 $a_file_sizes="";
795 foreach $x (@AFILES){
796 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
797 $a_file_sizes.="$1 $2 $BUILDTYPE\n";
798 }
799 @OFILES = split "\n", $ofiles;
800 $o_file_sizes="";
801 foreach $x (@OFILES){
802 $x =~ m/.+\s+.+\s+.+\s+.+\s+.+\s+.+\s+(.+)\s+.+\s+.+\s+.+\s+(.+)/;
803 $o_file_sizes.="$1 $2 $BUILDTYPE\n";
804 }
805} else {
806 $a_file_sizes="No data due to a bad build.";
807 $o_file_sizes="No data due to a bad build.";
808}
809
810##############################################################
811#
812# Running dejagnu tests
813#
814##############################################################
815my $DejangnuTestResults=""; # String containing the results of the dejagnu
816my $dejagnu_output = "$DejagnuTestsLog";
817if (!$NODEJAGNU) {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000818 if($VERBOSE) {
819 print "DEJAGNU FEATURE/REGRESSION TEST STAGE:\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820 print "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1\n";
821 }
822
823 #Run the feature and regression tests, results are put into testrun.sum
824 #Full log in testrun.log
825 system "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000826
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 #Copy the testrun.log and testrun.sum to our webdir
828 CopyFile("test/testrun.log", $DejagnuLog);
829 CopyFile("test/testrun.sum", $DejagnuSum);
830 #can be done on server
831 $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
832 $unexpfail_tests = $DejagnuTestResults;
833}
834
835#Extract time of dejagnu tests
836my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
837my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
838$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
Misha Brukmanafa1e862009-01-02 16:28:18 +0000839$DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output";
840$DejagnuTestResults =
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 "Dejagnu skipped by user choice." unless $DejagnuTestResults;
842$DejagnuTime = "0.0" unless $DejagnuTime;
843$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
844
845##############################################################
846#
847# Get warnings from the build
848#
849##############################################################
850if (!$NODEJAGNU) {
851 if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
852 my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
853 my @Warnings;
854 my $CurDir = "";
855
856 foreach $Warning (@Warn) {
857 if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
858 $CurDir = $1; # Keep track of directory warning is in...
859 # Remove buildir prefix if included
860 if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { $CurDir = $1; }
861 } else {
862 push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
863 }
864 }
865 my $WarningsFile = join "\n", @Warnings;
866 $WarningsFile =~ s/:[0-9]+:/::/g;
867
868 # Emit the warnings file, so we can diff...
869 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
870 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
871
872 # Output something to stdout if something has changed
873 #print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
874 #print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
875
876 #my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
877 #my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
878
879} #endif !NODEGAGNU
880
881##############################################################
882#
883# If we built the tree successfully, run the nightly programs tests...
884#
Misha Brukmanafa1e862009-01-02 16:28:18 +0000885# A set of tests to run is passed in (i.e. "SingleSource" "MultiSource"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886# "External")
887#
888##############################################################
889sub TestDirectory {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000890 my $SubDir = shift;
891 ChangeDir( "$BuildDir/llvm/projects/llvm-test/$SubDir",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 "Programs Test Subdirectory" ) || return ("", "");
Misha Brukmanafa1e862009-01-02 16:28:18 +0000893
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000894 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000895
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000896 # Run the programs tests... creating a report.nightly.csv file
897 if (!$NOTEST) {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000898 if( $VERBOSE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
Misha Brukmanafa1e862009-01-02 16:28:18 +0000900 "TEST=nightly > $ProgramTestLog 2>&1\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000901 }
902 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
903 "TEST=nightly > $ProgramTestLog 2>&1";
904 $llcbeta_options=`$MAKECMD print-llcbeta-option`;
Misha Brukmanafa1e862009-01-02 16:28:18 +0000905 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906
907 my $ProgramsTable;
908 if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0) {
909 $TestError = 1;
910 $ProgramsTable="Error running test $SubDir\n";
911 print "ERROR TESTING\n";
912 } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
913 $TestError = 1;
914 $ProgramsTable="Makefile error running tests $SubDir!\n";
915 print "ERROR TESTING\n";
916 } else {
917 $TestError = 0;
918 #
919 # Create a list of the tests which were run...
920 #
921 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
922 "| sort > $Prefix-$SubDir-Tests.txt";
923 }
924 $ProgramsTable = ReadFile "report.nightly.csv";
925
926 ChangeDir( "../../..", "Programs Test Parent Directory" );
927 return ($ProgramsTable, $llcbeta_options);
928} #end sub TestDirectory
929
930##############################################################
931#
932# Calling sub TestDirectory
933#
934##############################################################
935if (!$BuildError) {
936 if ( $VERBOSE ) {
937 print "SingleSource TEST STAGE\n";
938 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000939 ($SingleSourceProgramsTable, $llcbeta_options) =
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940 TestDirectory("SingleSource");
941 WriteFile "$Prefix-SingleSource-Performance.txt", $SingleSourceProgramsTable;
942 if ( $VERBOSE ) {
943 print "MultiSource TEST STAGE\n";
944 }
945 ($MultiSourceProgramsTable, $llcbeta_options) = TestDirectory("MultiSource");
946 WriteFile "$Prefix-MultiSource-Performance.txt", $MultiSourceProgramsTable;
947 if ( ! $NOEXTERNALS ) {
948 if ( $VERBOSE ) {
949 print "External TEST STAGE\n";
950 }
951 ($ExternalProgramsTable, $llcbeta_options) = TestDirectory("External");
952 WriteFile "$Prefix-External-Performance.txt", $ExternalProgramsTable;
Misha Brukmanafa1e862009-01-02 16:28:18 +0000953 system "cat $Prefix-SingleSource-Tests.txt " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 "$Prefix-MultiSource-Tests.txt ".
955 "$Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000956 system "cat $Prefix-SingleSource-Performance.txt " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000957 "$Prefix-MultiSource-Performance.txt ".
958 "$Prefix-External-Performance.txt | sort > $Prefix-Performance.txt";
959 } else {
960 $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
961 if ( $VERBOSE ) {
962 print "External TEST STAGE SKIPPED\n";
963 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000964 system "cat $Prefix-SingleSource-Tests.txt " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 "$Prefix-MultiSource-Tests.txt ".
966 " | sort > $Prefix-Tests.txt";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000967 system "cat $Prefix-SingleSource-Performance.txt " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 "$Prefix-MultiSource-Performance.txt ".
969 " | sort > $Prefix-Performance.txt";
970 }
971
972 ##############################################################
973 #
Misha Brukmanafa1e862009-01-02 16:28:18 +0000974 #
975 # gathering tests added removed broken information here
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 #
977 #
978 ##############################################################
979 my $dejagnu_test_list = ReadFile "$Prefix-Tests.txt";
980 my @DEJAGNU = split "\n", $dejagnu_test_list;
981 my ($passes, $fails, $xfails) = "";
982
983 if(!$NODEJAGNU) {
984 for ($x=0; $x<@DEJAGNU; $x++) {
985 if ($DEJAGNU[$x] =~ m/^PASS:/) {
986 $passes.="$DEJAGNU[$x]\n";
987 }
988 elsif ($DEJAGNU[$x] =~ m/^FAIL:/) {
989 $fails.="$DEJAGNU[$x]\n";
990 }
991 elsif ($DEJAGNU[$x] =~ m/^XFAIL:/) {
992 $xfails.="$DEJAGNU[$x]\n";
993 }
994 }
995 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000996
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997} #end if !$BuildError
998
999
1000##############################################################
1001#
1002# If we built the tree successfully, runs of the Olden suite with
1003# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
1004#
1005##############################################################
1006if (!$BuildError) {
1007 if ( $VERBOSE ) { print "OLDEN TEST SUITE STAGE\n"; }
1008 my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
1009 $MachCodeSize) = ("","","","","","","");
1010 if (!$NORUNNINGTESTS) {
1011 ChangeDir( "$BuildDir/llvm/projects/llvm-test/MultiSource/Benchmarks/Olden",
1012 "Olden Test Directory");
1013
1014 # Clean out previous results...
1015 system "$NICE $MAKECMD $MAKEOPTS clean > /dev/null 2>&1";
1016
1017 # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE and
1018 # GET_STABLE_NUMBERS enabled!
Misha Brukmanafa1e862009-01-02 16:28:18 +00001019 if( $VERBOSE ) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out " .
1021 "TEST=nightly LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 " .
Misha Brukmanafa1e862009-01-02 16:28:18 +00001022 "> /dev/null 2>&1\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 }
1024 system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out " .
1025 "TEST=nightly LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 " .
1026 "> /dev/null 2>&1";
1027 system "cp report.nightly.csv $OldenTestsLog";
Misha Brukmanafa1e862009-01-02 16:28:18 +00001028 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029}
1030
1031##############################################################
1032#
1033# Getting end timestamp
1034#
1035##############################################################
1036$endtime = `date "+20%y-%m-%d %H:%M:%S"`;
1037
1038
1039##############################################################
1040#
1041# Place all the logs neatly into one humungous file
1042#
1043##############################################################
1044if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
1045
Misha Brukmanafa1e862009-01-02 16:28:18 +00001046$machine_data = "uname: ".`uname -a`.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 "hardware: ".`uname -m`.
1048 "os: ".`uname -sr`.
1049 "name: ".`uname -n`.
1050 "date: ".`date \"+20%y-%m-%d\"`.
Misha Brukmanafa1e862009-01-02 16:28:18 +00001051 "time: ".`date +\"%H:%M:%S\"`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052
1053my @CVS_DATA;
1054my $cvs_data;
1055@CVS_DATA = ReadFile "$COLog";
1056$cvs_data = join("\n", @CVS_DATA);
1057
1058my @BUILD_DATA;
1059my $build_data;
1060@BUILD_DATA = ReadFile "$BuildLog";
1061$build_data = join("\n", @BUILD_DATA);
1062
1063my (@DEJAGNU_LOG, @DEJAGNU_SUM, @DEJAGNULOG_FULL, @GCC_VERSION);
1064my ($dejagnutests_log ,$dejagnutests_sum, $dejagnulog_full) = "";
1065my ($gcc_version, $gcc_version_long) = "";
1066
1067$gcc_version_long="";
1068if ($GCCPATH ne "") {
1069 $gcc_version_long = `$GCCPATH/gcc --version`;
1070} elsif ($ENV{"CC"}) {
1071 $gcc_version_long = `$ENV{"CC"} --version`;
1072} else {
1073 $gcc_version_long = `gcc --version`;
1074}
1075@GCC_VERSION = split '\n', $gcc_version_long;
1076$gcc_version = $GCC_VERSION[0];
1077
1078$llvmgcc_version_long="";
1079if ($LLVMGCCPATH ne "") {
1080 $llvmgcc_version_long = `$LLVMGCCPATH/llvm-gcc -v 2>&1`;
1081} else {
1082 $llvmgcc_version_long = `llvm-gcc -v 2>&1`;
1083}
1084@LLVMGCC_VERSION = split '\n', $llvmgcc_version_long;
1085$llvmgcc_versionTarget = $LLVMGCC_VERSION[1];
1086$llvmgcc_versionTarget =~ /Target: (.+)/;
1087$targetTriple = $1;
1088
1089if(!$BuildError){
1090 @DEJAGNU_LOG = ReadFile "$DejagnuLog";
1091 @DEJAGNU_SUM = ReadFile "$DejagnuSum";
1092 $dejagnutests_log = join("\n", @DEJAGNU_LOG);
1093 $dejagnutests_sum = join("\n", @DEJAGNU_SUM);
1094
1095 @DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
1096 $dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
1097}
1098
1099##############################################################
1100#
1101# Send data via a post request
1102#
1103##############################################################
1104
1105if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
1106
1107my %hash_of_data = (
1108 'machine_data' => $machine_data,
1109 'build_data' => $build_data,
1110 'gcc_version' => $gcc_version,
1111 'nickname' => $nickname,
1112 'dejagnutime_wall' => $DejagnuWallTime,
1113 'dejagnutime_cpu' => $DejagnuTime,
1114 'cvscheckouttime_wall' => $CheckoutTime_Wall,
1115 'cvscheckouttime_cpu' => $CheckoutTime_CPU,
1116 'configtime_wall' => $ConfigWallTime,
1117 'configtime_cpu'=> $ConfigTime,
1118 'buildtime_wall' => $BuildWallTime,
1119 'buildtime_cpu' => $BuildTime,
1120 'warnings' => $WarningsFile,
1121 'cvsusercommitlist' => $UserCommitList,
1122 'cvsuserupdatelist' => $UserUpdateList,
1123 'cvsaddedfiles' => $CVSAddedFiles,
1124 'cvsmodifiedfiles' => $CVSModifiedFiles,
1125 'cvsremovedfiles' => $CVSRemovedFiles,
1126 'lines_of_code' => $LOC,
1127 'cvs_file_count' => $NumFilesInCVS,
1128 'cvs_dir_count' => $NumDirsInCVS,
1129 'buildstatus' => $BuildStatus,
1130 'singlesource_programstable' => $SingleSourceProgramsTable,
1131 'multisource_programstable' => $MultiSourceProgramsTable,
1132 'externalsource_programstable' => $ExternalProgramsTable,
1133 'llcbeta_options' => $multisource_llcbeta_options,
1134 'warnings_removed' => $WarningsRemoved,
1135 'warnings_added' => $WarningsAdded,
1136 'passing_tests' => $passes,
1137 'expfail_tests' => $xfails,
1138 'unexpfail_tests' => $fails,
1139 'all_tests' => $dejagnu_test_list,
1140 'new_tests' => "",
1141 'removed_tests' => "",
1142 'dejagnutests_results' => $DejagnuTestResults,
1143 'dejagnutests_log' => $dejagnulog_full,
1144 'starttime' => $starttime,
1145 'endtime' => $endtime,
1146 'o_file_sizes' => $o_file_sizes,
1147 'a_file_sizes' => $a_file_sizes,
1148 'target_triple' => $targetTriple
1149);
1150
Tanya Lattner084a3ee2008-03-10 07:28:08 +00001151if ($SUBMIT) {
1152 my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
1153 if( $VERBOSE) { print "============================\n$response"; }
1154} else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 print "============================\n";
1156 foreach $x(keys %hash_of_data){
1157 print "$x => $hash_of_data{$x}\n";
1158 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001159}
1160
1161##############################################################
1162#
1163# Remove the cvs tree...
1164#
1165##############################################################
Misha Brukmanafa1e862009-01-02 16:28:18 +00001166system ( "$NICE rm -rf $BuildDir")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167 if (!$NOCHECKOUT and !$NOREMOVE);
Misha Brukmanafa1e862009-01-02 16:28:18 +00001168system ( "$NICE rm -rf $WebDir")
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001169 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);