blob: 477df8fc12e0790cf85842d3ccf45e351d53ca03 [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;
Bob Wilson6dc11b42009-06-19 17:19:38 +00004use File::Find;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00005use Socket;
6
7#
8# Program: NewNightlyTest.pl
9#
10# Synopsis: Perform a series of tests which are designed to be run nightly.
11# This is used to keep track of the status of the LLVM tree, tracking
Misha Brukman12c8d1b2009-01-02 16:28:18 +000012# regressions and performance changes. Submits this information
Reid Spencerfa34d7b2006-08-13 09:53:02 +000013# to llvm.org where it is placed into the nightlytestresults database.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000014#
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000015# Syntax: NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
16# where
17# OPTIONS may include one or more of the following:
18# -nocheckout Do not create, checkout, update, or configure
19# the source tree.
20# -noremove Do not remove the BUILDDIR after it has been built.
Patrick Jenkinsa5c04d62006-07-07 17:31:38 +000021# -noremoveresults Do not remove the WEBDIR after it has been built.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000022# -nobuild Do not build llvm. If tests are enabled perform them
23# on the llvm build specified in the build directory
Daniel Dunbarf5a59502009-06-02 21:14:15 +000024# -notest Do not even attempt to run the test programs.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000025# -nodejagnu Do not run feature or regression tests
Daniel Dunbar056dbd02009-05-28 22:45:24 +000026# -parallel Run parallel jobs with GNU Make (see -parallel-jobs).
27# -parallel-jobs The number of parallel Make jobs to use (default is two).
Duncan Sands45db29c2009-06-12 13:02:52 +000028# -with-clang Checkout Clang source into tools/clang.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000029# -release Build an LLVM Release version
Jim Laskey27b8ba02006-09-28 17:49:20 +000030# -release-asserts Build an LLVM ReleaseAsserts version
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000031# -enable-llcbeta Enable testing of beta features in llc.
Reid Spencer2bae1f52006-11-24 20:34:16 +000032# -enable-lli Enable testing of lli (interpreter) features, default is off
Duncan Sands45db29c2009-06-12 13:02:52 +000033# -disable-pic Disable building with Position Independent Code.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000034# -disable-llc Disable LLC tests in the nightly tester.
35# -disable-jit Disable JIT tests in the nightly tester.
36# -disable-cbe Disable C backend tests in the nightly tester.
Evan Chenge04c90b2008-01-12 04:27:18 +000037# -disable-lto Disable link time optimization.
Daniel Dunbar111def82009-03-10 19:33:13 +000038# -disable-bindings Disable building LLVM bindings.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000039# -verbose Turn on some debug output
40# -debug Print information useful only to maintainers of this script.
41# -nice Checkout/Configure/Build with "nice" to reduce impact
42# on busy servers.
43# -f2c Next argument specifies path to F2C utility
44# -nickname The next argument specifieds the nickname this script
45# will submit to the nightlytest results repository.
46# -gccpath Path to gcc/g++ used to build LLVM
47# -cvstag Check out a specific CVS tag to build LLVM (useful for
48# testing release branches)
Reid Spencerece1f682007-07-02 06:19:57 +000049# -usecvs Check code out from the (old) CVS Repository instead of from
50# the standard Subversion repository.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000051# -target Specify the target triplet
52# -cflags Next argument specifies that C compilation options that
53# override the default.
54# -cxxflags Next argument specifies that C++ compilation options that
55# override the default.
56# -ldflags Next argument specifies that linker options that override
57# the default.
Bill Wendling49e31822009-07-16 22:59:17 +000058# -test-cflags Next argument specifies that C compilation options that
59# override the default when running the testsuite.
60# -test-cxxflags Next argument specifies that C++ compilation options that
61# override the default when running the testsuite.
Patrick Jenkins215b48f2006-07-07 18:50:51 +000062# -compileflags Next argument specifies extra options passed to make when
63# building LLVM.
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000064# -use-gmake Use gmake instead of the default make command to build
Patrick Jenkins1cd46912006-07-27 01:17:17 +000065# llvm and run tests.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000066#
67# ---------------- Options to configure llvm-test ----------------------------
Patrick Jenkins215b48f2006-07-07 18:50:51 +000068# -extraflags Next argument specifies extra options that are passed to
69# compile the tests.
70# -noexternals Do not run the external tests (for cases where povray
71# or SPEC are not installed)
72# -with-externals Specify a directory where the external tests are located.
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000073# -submit-server Specifies a server to submit the test results too. If this
Misha Brukman12c8d1b2009-01-02 16:28:18 +000074# option is not specified it defaults to
75# llvm.org. This is basically just the address of the
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000076# webserver
77# -submit-script Specifies which script to call on the submit server. If
78# this option is not specified it defaults to
Misha Brukman12c8d1b2009-01-02 16:28:18 +000079# /nightlytest/NightlyTestAccept.php. This is basically
Patrick Jenkins0e9402f2006-08-11 23:02:09 +000080# everything after the www.yourserver.org.
Daniel Dunbarcd3f9992009-05-18 23:24:26 +000081# -submit-aux If specified, an auxiliary script to run in addition to the
82# normal submit script. The script will be passed the path to
83# the "sentdata.txt" file as its sole argument.
Tanya Lattnerc1611882008-03-10 07:28:08 +000084# -nosubmit Do not report the test results back to a submit server.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +000085#
86# CVSROOT is the CVS repository from which the tree will be checked out,
87# specified either in the full :method:user@host:/dir syntax, or
88# just /dir if using a local repo.
89# BUILDDIR is the directory where sources for this test run will be checked out
90# AND objects for this test run will be built. This directory MUST NOT
91# exist before the script is run; it will be created by the cvs checkout
92# process and erased (unless -noremove is specified; see above.)
93# WEBDIR is the directory into which the test results web page will be written,
94# AND in which the "index.html" is assumed to be a symlink to the most recent
95# copy of the results. This directory will be created if it does not exist.
96# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
97# to. This is the same as you would have for a normal LLVM build.
98#
99##############################################################
100#
101# Getting environment variables
102#
103##############################################################
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000104my $HOME = $ENV{'HOME'};
Reid Spencer99e865a2007-04-07 04:41:16 +0000105my $SVNURL = $ENV{"SVNURL"};
Duncan Sands45db29c2009-06-12 13:02:52 +0000106$SVNURL = 'http://llvm.org/svn/llvm-project' unless $SVNURL;
Evan Cheng53df0a22009-06-18 21:39:50 +0000107my $TestSVNURL = $ENV{"TestSVNURL"};
Evan Chenge11c4db2009-07-14 06:23:41 +0000108$TestSVNURL = 'http://llvm.org/svn/llvm-project' unless $TestSVNURL;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000109my $CVSRootDir = $ENV{'CVSROOT'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000110$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000111my $BuildDir = $ENV{'BUILDDIR'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000112$BuildDir = "$HOME/buildtest" unless $BuildDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000113my $WebDir = $ENV{'WEBDIR'};
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000114$WebDir = "$HOME/cvs/testresults-X86" unless $WebDir;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000115
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000116my $LLVMSrcDir = $ENV{'LLVMSRCDIR'};
117$LLVMSrcDir = "$BuildDir/llvm" unless $LLVMSrcDir;
118my $LLVMObjDir = $ENV{'LLVMOBJDIR'};
119$LLVMObjDir = "$BuildDir/llvm" unless $LLVMObjDir;
120my $LLVMTestDir = $ENV{'LLVMTESTDIR'};
121$LLVMTestDir = "$BuildDir/llvm/projects/llvm-test" unless $LLVMTestDir;
122
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000123##############################################################
124#
125# Calculate the date prefix...
126#
127##############################################################
128@TIME = localtime;
Daniel Dunbar42cdc382009-07-01 14:52:59 +0000129my $DATE = sprintf "%4d-%02d-%02d_%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3], $TIME[1], $TIME[0];
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000130
131##############################################################
132#
133# Parse arguments...
134#
135##############################################################
136$CONFIGUREARGS="";
Patrick Jenkins49717a42006-07-21 01:39:42 +0000137$nickname="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000138$NOTEST=0;
John Criswelleecd7112007-06-29 19:12:50 +0000139$USESVN=1;
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000140$MAKECMD="make";
Patrick Jenkins0e9402f2006-08-11 23:02:09 +0000141$SUBMITSERVER = "llvm.org";
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000142$SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.php";
Daniel Dunbarcd3f9992009-05-18 23:24:26 +0000143$SUBMITAUX="";
Tanya Lattnerc1611882008-03-10 07:28:08 +0000144$SUBMIT = 1;
Daniel Dunbar056dbd02009-05-28 22:45:24 +0000145$PARALLELJOBS = "2";
Bill Wendling49e31822009-07-16 22:59:17 +0000146my $TESTFLAGS="";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000147
148while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000149 shift;
150 last if /^--$/; # Stop processing arguments on --
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000151
152 # List command line options here...
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000153 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
154 if (/^-nocvsstats$/) { $NOCVSSTATS = 1; next; }
155 if (/^-noremove$/) { $NOREMOVE = 1; next; }
Daniel Dunbar0c39e382009-07-13 22:17:49 +0000156 if (/^-noremoveatend$/) { $NOREMOVEATEND = 1; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000157 if (/^-noremoveresults$/){ $NOREMOVERESULTS = 1; next; }
Daniel Dunbarf5a59502009-06-02 21:14:15 +0000158 if (/^-notest$/) { $NOTEST = 1; next; }
159 if (/^-norunningtests$/) { next; } # Backward compatibility, ignored.
Daniel Dunbar056dbd02009-05-28 22:45:24 +0000160 if (/^-parallel-jobs$/) { $PARALLELJOBS = "$ARGV[0]"; shift; next;}
161 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j$PARALLELJOBS -l3.0"; next; }
Duncan Sands45db29c2009-06-12 13:02:52 +0000162 if (/^-with-clang$/) { $WITHCLANG = 1; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000163 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
164 "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
Jim Laskey27b8ba02006-09-28 17:49:20 +0000165 if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
Dan Gohmanc6e22412008-10-30 01:08:03 +0000166 "DISABLE_ASSERTIONS=1 ".
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000167 "OPTIMIZE_OPTION=-O2";
Reid Spencer93c456c2006-10-19 15:24:04 +0000168 $BUILDTYPE="release-asserts"; next;}
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000169 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
Duncan Sands45db29c2009-06-12 13:02:52 +0000170 if (/^-disable-pic$/) { $CONFIGUREARGS .= " --enable-pic=no"; next; }
Reid Spencer2bae1f52006-11-24 20:34:16 +0000171 if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000172 $CONFIGUREARGS .= " --enable-lli"; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000173 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000174 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000175 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
176 $CONFIGUREARGS .= " --disable-jit"; next; }
Daniel Dunbar111def82009-03-10 19:33:13 +0000177 if (/^-disable-bindings$/) { $CONFIGUREARGS .= " --disable-bindings"; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000178 if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
Evan Chenge04c90b2008-01-12 04:27:18 +0000179 if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
Evan Cheng3d64f1c2008-01-14 17:58:03 +0000180 if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000181 if (/^-verbose$/) { $VERBOSE = 1; next; }
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000182 if (/^-teelogs$/) { $TEELOGS = 1; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000183 if (/^-debug$/) { $DEBUG = 1; next; }
184 if (/^-nice$/) { $NICE = "nice "; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000185 if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000186 shift; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000187 if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000188 shift; next; }
Daniel Dunbarff79ef42009-07-13 22:31:58 +0000189 if (/^-configure-args$/) { $CONFIGUREARGS .= " $ARGV[0]";
190 shift; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000191 if (/^-submit-server/) { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
192 if (/^-submit-script/) { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
Daniel Dunbarcd3f9992009-05-18 23:24:26 +0000193 if (/^-submit-aux/) { $SUBMITAUX = "$ARGV[0]"; shift; next; }
Tanya Lattnerc1611882008-03-10 07:28:08 +0000194 if (/^-nosubmit$/) { $SUBMIT = 0; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000195 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
196 if (/^-gccpath/) { $CONFIGUREARGS .=
197 " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000198 $GCCPATH=$ARGV[0]; shift; next; }
199 else { $GCCPATH=""; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000200 if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000201 else { $CVSCOOPT="";}
Reid Spencerece1f682007-07-02 06:19:57 +0000202 if (/^-usecvs/) { $USESVN = 0; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000203 if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000204 shift; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000205 if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000206 shift; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000207 if (/^-cxxflags/) { $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000208 shift; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000209 if (/^-ldflags/) { $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000210 shift; next; }
Bill Wendling49e31822009-07-16 22:59:17 +0000211 if (/^-test-cflags/) { $TESTFLAGS = "$TESTFLAGS CFLAGS=\'$ARGV[0]\'";
212 shift; next; }
213 if (/^-test-cxxflags/) { $TESTFLAGS = "$TESTFLAGS CXXFLAGS=\'$ARGV[0]\'";
214 shift; next; }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000215 if (/^-compileflags/) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
216 if (/^-use-gmake/) { $MAKECMD = "gmake"; shift; next; }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000217 if (/^-extraflags/) { $CONFIGUREARGS .=
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000218 " --with-extra-options=\'$ARGV[0]\'"; shift; next;}
219 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
220 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
221 if (/^-nobuild$/) { $NOBUILD = 1; next; }
222 print "Unknown option: $_ : ignoring!\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000223}
224
225if ($ENV{'LLVMGCCDIR'}) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000226 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
Bob Wilson85cdfad2009-03-12 19:47:24 +0000227 $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin';
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000228}
Tanya Lattner849c9a22007-04-13 04:36:48 +0000229else {
230 $LLVMGCCPATH = "";
231}
232
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000233if ($CONFIGUREARGS !~ /--disable-jit/) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000234 $CONFIGUREARGS .= " --enable-jit";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000235}
236
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000237if (@ARGV != 0 and @ARGV != 3 and $VERBOSE) {
238 foreach $x (@ARGV) {
239 print "$x\n";
240 }
241 print "Must specify 0 or 3 options!";
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000242}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000243
244if (@ARGV == 3) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000245 $CVSRootDir = $ARGV[0];
246 $BuildDir = $ARGV[1];
247 $WebDir = $ARGV[2];
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000248}
249
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000250if ($CVSRootDir eq "" or
251 $BuildDir eq "" or
252 $WebDir eq "") {
253 die("please specify a cvs root directory, a build directory, and a ".
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000254 "web directory");
255 }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000256
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000257if ($nickname eq "") {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000258 die ("Please invoke NewNightlyTest.pl with command line option " .
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000259 "\"-nickname <nickname>\"");
Patrick Jenkins514e2582006-07-20 22:28:43 +0000260}
Patrick Jenkins1cd46912006-07-27 01:17:17 +0000261
Jim Laskey27b8ba02006-09-28 17:49:20 +0000262if ($BUILDTYPE ne "release" && $BUILDTYPE ne "release-asserts") {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000263 $BUILDTYPE = "debug";
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000264}
Patrick Jenkins514e2582006-07-20 22:28:43 +0000265
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000266##############################################################
267#
268#define the file names we'll use
269#
270##############################################################
271my $Prefix = "$WebDir/$DATE";
272my $BuildLog = "$Prefix-Build-Log.txt";
Reid Spencer99e865a2007-04-07 04:41:16 +0000273my $COLog = "$Prefix-CVS-Log.txt";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000274my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
275my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
Patrick Jenkins26ba6092006-07-23 22:57:28 +0000276my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000277my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
278my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
279my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
280if (! -d $WebDir) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000281 mkdir $WebDir, 0777;
Patrick Jenkins03137752006-08-21 20:45:57 +0000282 if($VERBOSE){
283 warn "$WebDir did not exist; creating it.\n";
284 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000285}
286
287if ($VERBOSE) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000288 print "INITIALIZED\n";
Reid Spencer99e865a2007-04-07 04:41:16 +0000289 if ($USESVN) {
290 print "SVN URL = $SVNURL\n";
291 } else {
292 print "CVS Root = $CVSRootDir\n";
293 }
294 print "COLog = $COLog\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000295 print "BuildDir = $BuildDir\n";
296 print "WebDir = $WebDir\n";
297 print "Prefix = $Prefix\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000298 print "BuildLog = $BuildLog\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000299}
300
301##############################################################
302#
303# Helper functions
304#
305##############################################################
306sub GetDir {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000307 my $Suffix = shift;
308 opendir DH, $WebDir;
309 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
310 closedir DH;
311 return @Result;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000312}
313
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000314sub RunLoggedCommand {
315 my $Command = shift;
316 my $Log = shift;
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000317 my $Title = shift;
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000318 if ($TEELOGS) {
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000319 if ($VERBOSE) {
320 print "$Title\n";
321 print "$Command 2>&1 | tee $Log\n";
322 }
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000323 system "$Command 2>&1 | tee $Log";
324 } else {
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000325 if ($VERBOSE) {
326 print "$Title\n";
327 print "$Command 2>&1 > $Log\n";
328 }
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000329 system "$Command 2>&1 > $Log";
330 }
331}
332
333sub RunAppendingLoggedCommand {
334 my $Command = shift;
335 my $Log = shift;
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000336 my $Title = shift;
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000337 if ($TEELOGS) {
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000338 if ($VERBOSE) {
339 print "$Title\n";
340 print "$Command 2>&1 | tee -a $Log\n";
341 }
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000342 system "$Command 2>&1 | tee -a $Log";
343 } else {
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000344 if ($VERBOSE) {
345 print "$Title\n";
346 print "$Command 2>&1 > $Log\n";
347 }
348 system "$Command 2>&1 >> $Log";
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000349 }
350}
351
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000352#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
353#
354# DiffFiles - Diff the current version of the file against the last version of
355# the file, reporting things added and removed. This is used to report, for
356# example, added and removed warnings. This returns a pair (added, removed)
357#
358#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
359sub DiffFiles {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000360 my $Suffix = shift;
361 my @Others = GetDir $Suffix;
362 if (@Others == 0) { # No other files? We added all entries...
363 return (`cat $WebDir/$DATE$Suffix`, "");
364 }
365# Diff the files now...
366 my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
367 my $Added = join "\n", grep /^</, @Diffs;
368 my $Removed = join "\n", grep /^>/, @Diffs;
369 $Added =~ s/^< //gm;
370 $Removed =~ s/^> //gm;
371 return ($Added, $Removed);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000372}
373
374#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
375#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
376sub GetRegex { # (Regex with ()'s, value)
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000377 $_[1] =~ /$_[0]/m;
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000378 return $1
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000379 if (defined($1));
380 return "0";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000381}
382
383#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
384#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
385sub GetRegexNum {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000386 my ($Regex, $Num, $Regex2, $File) = @_;
387 my @Items = split "\n", `grep '$Regex' $File`;
388 return GetRegex $Regex2, $Items[$Num];
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000389}
390
391#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
392#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
393sub ChangeDir { # directory, logical name
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000394 my ($dir,$name) = @_;
395 chomp($dir);
396 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
397 $result = chdir($dir);
398 if (!$result) {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000399 print "ERROR!!! Cannot change directory to: $name ($dir) because $!";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000400 return false;
401 }
402 return true;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000403}
404
405#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
406#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
407sub ReadFile {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000408 if (open (FILE, $_[0])) {
409 undef $/;
410 my $Ret = <FILE>;
411 close FILE;
412 $/ = '\n';
413 return $Ret;
414 } else {
415 print "Could not open file '$_[0]' for reading!\n";
416 return "";
417 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000418}
419
420#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
421#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
422sub WriteFile { # (filename, contents)
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000423 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
424 print FILE $_[1];
425 close FILE;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000426}
427
428#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
429#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
430sub CopyFile { #filename, newfile
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000431 my ($file, $newfile) = @_;
432 chomp($file);
433 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
434 copy($file, $newfile);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000435}
436
437#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
438#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
439sub AddRecord {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000440 my ($Val, $Filename,$WebDir) = @_;
441 my @Records;
442 if (open FILE, "$WebDir/$Filename") {
443 @Records = grep !/$DATE/, split "\n", <FILE>;
444 close FILE;
445 }
446 push @Records, "$DATE: $Val";
447 WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000448}
449
450#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
451#
452# FormatTime - Convert a time from 1m23.45 into 83.45
453#
454#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
455sub FormatTime {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000456 my $Time = shift;
457 if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
458 $Time = sprintf("%7.4f", $1*60.0+$2);
459 }
460 return $Time;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000461}
462
463#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000464#
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000465# This function is meant to read in the dejagnu sum file and
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000466# return a string with only the results (i.e. PASS/FAIL/XPASS/
467# XFAIL).
468#
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000469#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
470sub GetDejagnuTestResults { # (filename, log)
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000471 my ($filename, $DejagnuLog) = @_;
472 my @lines;
473 $/ = "\n"; #Make sure we're going line at a time.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000474
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000475 if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000476
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000477 if (open SRCHFILE, $filename) {
478 # Process test results
479 while ( <SRCHFILE> ) {
480 if ( length($_) > 1 ) {
481 chomp($_);
Jim Laskey01d7bcf2006-09-20 09:20:22 +0000482 if ( m/^(PASS|XPASS|FAIL|XFAIL): .*\/llvm\/test\/(.*)$/ ) {
483 push(@lines, "$1: test/$2");
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000484 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000485 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000486 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000487 }
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000488 close SRCHFILE;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000489
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000490 my $content = join("\n", @lines);
491 return $content;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000492}
493
494
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000495
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000496#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
497#
498# This function acts as a mini web browswer submitting data
499# to our central server via the post method
500#
501#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
502sub SendData{
503 $host = $_[0];
504 $file = $_[1];
505 $variables=$_[2];
506
Daniel Dunbar94a37a42009-05-28 18:31:40 +0000507 # Write out the "...-sentdata.txt" file.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000508
Daniel Dunbar94a37a42009-05-28 18:31:40 +0000509 my $sentdata="";
510 foreach $x (keys (%$variables)){
511 $value = $variables->{$x};
512 $sentdata.= "$x => $value\n";
513 }
514 WriteFile "$Prefix-sentdata.txt", $sentdata;
515
516 if (!($SUBMITAUX eq "")) {
Daniel Dunbarf7f02a92009-06-26 22:33:28 +0000517 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
518 }
519
520 if (!$SUBMIT) {
521 return "Skipped standard submit.\n";
Daniel Dunbar94a37a42009-05-28 18:31:40 +0000522 }
523
524 # Create the content to send to the server.
525
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000526 my $content;
527 foreach $key (keys (%$variables)){
528 $value = $variables->{$key};
529 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
530 $content .= "$key=$value&";
531 }
532
Daniel Dunbar94a37a42009-05-28 18:31:40 +0000533 # Send the data to the server.
534 #
535 # FIXME: This code should be more robust?
536
537 $port=80;
538 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
539 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
540 die "Bad socket\n";
541 connect SOCK, $socketaddr or die "Bad connection\n";
542 select((select(SOCK), $| = 1)[0]);
543
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000544 $length = length($content);
545
546 my $send= "POST $file HTTP/1.0\n";
Lauro Ramos Venancio46040232007-05-03 14:05:07 +0000547 $send.= "Host: $host\n";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000548 $send.= "Content-Type: application/x-www-form-urlencoded\n";
549 $send.= "Content-length: $length\n\n";
550 $send.= "$content";
551
Patrick Jenkinse8501eb2006-08-07 01:54:37 +0000552 print SOCK $send;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000553 my $result;
554 while(<SOCK>){
555 $result .= $_;
556 }
557 close(SOCK);
558
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000559 return $result;
560}
561
Patrick Jenkins215b48f2006-07-07 18:50:51 +0000562##############################################################
563#
564# Getting Start timestamp
565#
566##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +0000567$starttime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000568
569##############################################################
570#
571# Create the CVS repository directory
572#
573##############################################################
574if (!$NOCHECKOUT) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000575 if (-d $BuildDir) {
576 if (!$NOREMOVE) {
577 if ( $VERBOSE ) {
578 print "Build directory exists! Removing it\n";
579 }
580 system "rm -rf $BuildDir";
Reid Spencer99e865a2007-04-07 04:41:16 +0000581 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000582 } else {
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000583 if ( $VERBOSE ) {
584 print "Build directory exists!\n";
585 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000586 }
Jim Laskey6d8a1b72006-09-15 17:03:36 +0000587 } else {
Reid Spencer99e865a2007-04-07 04:41:16 +0000588 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000589 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000590}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000591
592
593##############################################################
594#
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000595# Check out the llvm tree, using either SVN or CVS
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000596#
597##############################################################
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000598if (!$NOCHECKOUT) {
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000599 ChangeDir( $BuildDir, "checkout directory" );
Reid Spencer99e865a2007-04-07 04:41:16 +0000600 if ($USESVN) {
Duncan Sands45db29c2009-06-12 13:02:52 +0000601 my $SVNCMD = "$NICE svn co --non-interactive $SVNURL";
Evan Cheng53df0a22009-06-18 21:39:50 +0000602 my $SVNCMD2 = "$NICE svn co --non-interactive $TestSVNURL";
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000603 RunLoggedCommand("( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000604 "$SVNCMD2/test-suite/trunk llvm-test )", $COLog,
605 "CHECKOUT LLVM");
Evan Cheng53df0a22009-06-18 21:39:50 +0000606 if ($WITHCLANG) {
607 my $SVNCMD = "$NICE svn co --non-interactive $SVNURL/cfe/trunk";
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000608 RunLoggedCommand("( time -p cd llvm/tools ; $SVNCMD clang )", $COLog,
609 "CHECKOUT CLANG");
Evan Cheng53df0a22009-06-18 21:39:50 +0000610 }
Reid Spencer99e865a2007-04-07 04:41:16 +0000611 } else {
612 my $CVSOPT = "";
613 $CVSOPT = "-z3" # Use compression if going over ssh.
614 if $CVSRootDir =~ /^:ext:/;
615 my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co -P $CVSCOOPT";
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000616 RunLoggedCommand("( time -p $CVSCMD llvm; cd llvm/projects ; " .
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000617 "$CVSCMD llvm-test )", $COLog,
618 "CHECKOUT LLVM-TEST");
Reid Spencer99e865a2007-04-07 04:41:16 +0000619 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000620}
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000621ChangeDir( $LLVMSrcDir , "llvm source directory") ;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000622
623##############################################################
624#
625# Get some static statistics about the current state of CVS
626#
627# This can probably be put on the server side
628#
629##############################################################
Reid Spencer99e865a2007-04-07 04:41:16 +0000630my $CheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $COLog`;
631my $CheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $COLog`;
632my $CheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $COLog`;
633my $CheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000634
Reid Spencer99e865a2007-04-07 04:41:16 +0000635my $NumFilesInCVS = 0;
636my $NumDirsInCVS = 0;
637if ($USESVN) {
638 $NumFilesInCVS = `egrep '^A' $COLog | wc -l` + 0;
Nick Lewyckyef7d2bb2008-06-05 12:54:44 +0000639 $NumDirsInCVS = `sed -e 's#/[^/]*\$##' $COLog | sort | uniq | wc -l` + 0;
Reid Spencer99e865a2007-04-07 04:41:16 +0000640} else {
641 $NumFilesInCVS = `egrep '^U' $COLog | wc -l` + 0;
642 $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $COLog | wc -l` + 0;
643}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000644
645##############################################################
646#
647# Extract some information from the CVS history... use a hash so no duplicate
648# stuff is stored. This gets the history from the previous days worth
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000649# of cvs activity and parses it.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000650#
651##############################################################
652
Reid Spencer99e865a2007-04-07 04:41:16 +0000653# This just computes a reasonably accurate #of seconds since 2000. It doesn't
654# have to be perfect as its only used for comparing date ranges within a couple
655# of days.
656sub ConvertToSeconds {
657 my ($sec, $min, $hour, $day, $mon, $yr) = @_;
658 my $Result = ($yr - 2000) * 12;
659 $Result += $mon;
660 $Result *= 31;
661 $Result += $day;
662 $Result *= 24;
663 $Result += $hour;
664 $Result *= 60;
665 $Result += $min;
666 $Result *= 60;
667 $Result += $sec;
668 return $Result;
669}
670
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000671my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
672
Reid Spencer99e865a2007-04-07 04:41:16 +0000673if (!$NOCVSSTATS) {
674 if ($VERBOSE) { print "CHANGE HISTORY ANALYSIS STAGE\n"; }
Reid Spencer776964a2007-04-04 06:59:36 +0000675
Reid Spencer99e865a2007-04-07 04:41:16 +0000676 if ($USESVN) {
Duncan Sands45db29c2009-06-12 13:02:52 +0000677 @SVNHistory = split /<logentry/, `svn log --non-interactive --xml --verbose -r{$DATE}:HEAD`;
Reid Spencer99e865a2007-04-07 04:41:16 +0000678 # Skip very first entry because it is the XML header cruft
679 shift @SVNHistory;
680 my $Now = time();
681 foreach $Record (@SVNHistory) {
682 my @Lines = split "\n", $Record;
683 my ($Author, $Date, $Revision);
684 # Get the date and see if its one we want to process.
685 my ($Year, $Month, $Day, $Hour, $Min, $Sec);
686 if ($Lines[3] =~ /<date>(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})/){
687 $Year = $1; $Month = $2; $Day = $3; $Hour = $4; $Min = $5; $Sec = $6;
688 }
689 my $Then = ConvertToSeconds($Sec, $Min, $Hour, $Day, $Month, $Year);
690 # Get the current date and compute when "yesterday" is.
691 my ($NSec, $NMin, $NHour, $NDay, $NMon, $NYear) = gmtime();
692 my $Now = ConvertToSeconds( $NSec, $NMin, $NHour, $NDay, $NMon, $NYear);
693 if (($Now - 24*60*60) > $Then) {
694 next;
695 }
696 if ($Lines[1] =~ / revision="([0-9]*)">/) {
697 $Revision = $1;
698 }
699 if ($Lines[2] =~ /<author>([^<]*)<\/author>/) {
700 $Author = $1;
701 }
702 $UsersCommitted{$Author} = 1;
703 $Date = $Year . "-" . $Month . "-" . $Day;
704 $Time = $Hour . ":" . $Min . ":" . $Sec;
705 print "Rev: $Revision, Author: $Author, Date: $Date, Time: $Time\n";
706 for ($i = 6; $i < $#Lines; $i += 2 ) {
707 if ($Lines[$i] =~ /^ action="(.)">([^<]*)</) {
708 if ($1 == "A") {
709 $AddedFiles{$2} = 1;
710 } elsif ($1 == 'D') {
711 $RemovedFiles{$2} = 1;
712 } elsif ($1 == 'M' || $1 == 'R' || $1 == 'C') {
713 $ModifiedFiles{$2} = 1;
714 } else {
715 print "UNMATCHABLE: $Lines[$i]\n";
716 }
717 }
718 }
719 }
720 } else {
721 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000722#print join "\n", @CVSHistory; print "\n";
723
Reid Spencer99e865a2007-04-07 04:41:16 +0000724 my $DateRE = '[-/:0-9 ]+\+[0-9]+';
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000725
726# Loop over every record from the CVS history, filling in the hashes.
Reid Spencer99e865a2007-04-07 04:41:16 +0000727 foreach $File (@CVSHistory) {
728 my ($Type, $Date, $UID, $Rev, $Filename);
729 if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
730 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
731 } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
732 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
733 } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
734 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
735 } else {
736 print "UNMATCHABLE: $File\n";
737 next;
738 }
739 # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000740
Reid Spencer99e865a2007-04-07 04:41:16 +0000741 if ($Filename =~ /^llvm/) {
742 if ($Type eq 'M') { # Modified
743 $ModifiedFiles{$Filename} = 1;
744 $UsersCommitted{$UID} = 1;
745 } elsif ($Type eq 'A') { # Added
746 $AddedFiles{$Filename} = 1;
747 $UsersCommitted{$UID} = 1;
748 } elsif ($Type eq 'R') { # Removed
749 $RemovedFiles{$Filename} = 1;
750 $UsersCommitted{$UID} = 1;
751 } else {
752 $UsersUpdated{$UID} = 1;
753 }
754 }
755 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000756
Reid Spencer99e865a2007-04-07 04:41:16 +0000757 my $TestError = 1;
758 } #$USESVN
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000759}#!NOCVSSTATS
760
761my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
762my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
763my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
764my $UserCommitList = join "\n", sort keys %UsersCommitted;
765my $UserUpdateList = join "\n", sort keys %UsersUpdated;
766
767##############################################################
768#
769# Build the entire tree, saving build messages to the build log
770#
771##############################################################
772if (!$NOCHECKOUT && !$NOBUILD) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000773 my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000774 RunLoggedCommand("(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) ",
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000775 $BuildLog, "CONFIGURE");
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000776 # Build the entire tree, capturing the output into $BuildLog
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000777 RunAppendingLoggedCommand("(time -p $NICE $MAKECMD clean)", $BuildLog, "BUILD CLEAN");
778 RunAppendingLoggedCommand("(time -p $NICE $MAKECMD $MAKEOPTS)", $BuildLog, "BUILD");
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000779}
780
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000781##############################################################
782#
783# Get some statistics about the build...
784#
785##############################################################
786#this can de done on server
787#my @Linked = split '\n', `grep Linking $BuildLog`;
788#my $NumExecutables = scalar(grep(/executable/, @Linked));
789#my $NumLibraries = scalar(grep(!/executable/, @Linked));
790#my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
791
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000792# Get the number of lines of source code. Must be here after the build is done
793# because countloc.sh uses the llvm-config script which must be built.
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000794my $LOC = `utils/countloc.sh -topdir $LLVMSrcDir`;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000795
796# Get the time taken by the configure script
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000797my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
798my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
799my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
800my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
801
802$ConfigTime=-1 unless $ConfigTime;
803$ConfigWallTime=-1 unless $ConfigWallTime;
804
805my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
806my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
807my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
808my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
809
810$BuildTime=-1 unless $BuildTime;
811$BuildWallTime=-1 unless $BuildWallTime;
812
813my $BuildError = 0, $BuildStatus = "OK";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000814if ($NOBUILD) {
815 $BuildStatus = "Skipped by user";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000816}
Patrick Jenkinsf58473f2006-07-27 01:03:46 +0000817elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000818 `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
819 $BuildStatus = "Error: compilation aborted";
820 $BuildError = 1;
821 if( $VERBOSE) { print "\n***ERROR BUILDING TREE\n\n"; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000822}
823if ($BuildError) { $NODEJAGNU=1; }
824
Patrick Jenkins169357e2006-07-23 21:38:07 +0000825my $a_file_sizes="";
826my $o_file_sizes="";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000827if (!$BuildError) {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000828 print "Organizing size of .o and .a files\n"
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000829 if ( $VERBOSE );
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000830 ChangeDir( "$LLVMObjDir", "Build Directory" );
Bob Wilson6dc11b42009-06-19 17:19:38 +0000831
832 my @dirs = ('utils', 'lib', 'tools');
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000833 if($BUILDTYPE eq "release"){
Bob Wilson6dc11b42009-06-19 17:19:38 +0000834 push @dirs, 'Release';
Jim Laskey27b8ba02006-09-28 17:49:20 +0000835 } elsif($BUILDTYPE eq "release-asserts") {
Bob Wilson6dc11b42009-06-19 17:19:38 +0000836 push @dirs, 'Release-Asserts';
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000837 } else {
Bob Wilson6dc11b42009-06-19 17:19:38 +0000838 push @dirs, 'Debug';
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000839 }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000840
Bob Wilson6dc11b42009-06-19 17:19:38 +0000841 find(sub {
842 $a_file_sizes .= (-s $_)." $File::Find::name $BUILDTYPE\n" if /\.a$/i;
843 $o_file_sizes .= (-s $_)." $File::Find::name $BUILDTYPE\n" if /\.o$/i;
844 }, @dirs);
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000845} else {
846 $a_file_sizes="No data due to a bad build.";
847 $o_file_sizes="No data due to a bad build.";
Patrick Jenkins169357e2006-07-23 21:38:07 +0000848}
Patrick Jenkins169357e2006-07-23 21:38:07 +0000849
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000850##############################################################
851#
852# Running dejagnu tests
853#
854##############################################################
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +0000855my $DejangnuTestResults=""; # String containing the results of the dejagnu
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000856my $dejagnu_output = "$DejagnuTestsLog";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000857if (!$NODEJAGNU) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000858 #Run the feature and regression tests, results are put into testrun.sum
859 #Full log in testrun.log
Daniel Dunbarfc0fc3a2009-06-26 02:30:49 +0000860 RunLoggedCommand("(time -p $MAKECMD $MAKEOPTS check)", $dejagnu_output, "DEJAGNU");
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000861
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000862 #Copy the testrun.log and testrun.sum to our webdir
863 CopyFile("test/testrun.log", $DejagnuLog);
864 CopyFile("test/testrun.sum", $DejagnuSum);
865 #can be done on server
866 $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
867 $unexpfail_tests = $DejagnuTestResults;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000868}
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000869
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000870#Extract time of dejagnu tests
871my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
872my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
873$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000874$DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output";
875$DejagnuTestResults =
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000876 "Dejagnu skipped by user choice." unless $DejagnuTestResults;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000877$DejagnuTime = "0.0" unless $DejagnuTime;
878$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
879
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000880##############################################################
881#
882# Get warnings from the build
883#
884##############################################################
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000885if (!$NODEJAGNU) {
886 if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
887 my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
888 my @Warnings;
889 my $CurDir = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000890
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000891 foreach $Warning (@Warn) {
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000892 if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000893 $CurDir = $1; # Keep track of directory warning is in...
894 # Remove buildir prefix if included
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000895 if ($CurDir =~ m#$LLVMSrcDir/(.*)#) { $CurDir = $1; }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000896 } else {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000897 push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000898 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000899 }
900 my $WarningsFile = join "\n", @Warnings;
901 $WarningsFile =~ s/:[0-9]+:/::/g;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000902
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000903 # Emit the warnings file, so we can diff...
904 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
905 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000906
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000907 # Output something to stdout if something has changed
908 #print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
909 #print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000910
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000911 #my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
912 #my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000913
914} #endif !NODEGAGNU
915
916##############################################################
917#
918# If we built the tree successfully, run the nightly programs tests...
919#
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000920# A set of tests to run is passed in (i.e. "SingleSource" "MultiSource"
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000921# "External")
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000922#
923##############################################################
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000924
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000925sub TestDirectory {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000926 my $SubDir = shift;
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000927 ChangeDir( "$LLVMTestDir/$SubDir",
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000928 "Programs Test Subdirectory" ) || return ("", "");
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000929
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000930 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000931
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000932 # Run the programs tests... creating a report.nightly.csv file
933 if (!$NOTEST) {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000934 if( $VERBOSE) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000935 print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
Bill Wendling49e31822009-07-16 22:59:17 +0000936 "$TESTFLAGS TEST=nightly > $ProgramTestLog 2>&1\n";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000937 }
Daniel Dunbar2f90daf2009-06-26 01:53:05 +0000938 RunLoggedCommand("$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
Bill Wendling49e31822009-07-16 22:59:17 +0000939 "$TESTFLAGS TEST=nightly",
940 $ProgramTestLog, "TEST DIRECTORY $SubDir");
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000941 $llcbeta_options=`$MAKECMD print-llcbeta-option`;
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000942 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000943
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000944 my $ProgramsTable;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000945 if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0) {
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000946 $TestError = 1;
947 $ProgramsTable="Error running test $SubDir\n";
948 print "ERROR TESTING\n";
949 } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
950 $TestError = 1;
951 $ProgramsTable="Makefile error running tests $SubDir!\n";
952 print "ERROR TESTING\n";
953 } else {
954 $TestError = 0;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000955 #
956 # Create a list of the tests which were run...
957 #
958 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000959 "| sort > $Prefix-$SubDir-Tests.txt";
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000960 }
961 $ProgramsTable = ReadFile "report.nightly.csv";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000962
Patrick Jenkins59d1a662006-07-27 18:28:50 +0000963 ChangeDir( "../../..", "Programs Test Parent Directory" );
964 return ($ProgramsTable, $llcbeta_options);
Patrick Jenkins9e384ab2006-08-14 16:07:14 +0000965} #end sub TestDirectory
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000966
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000967##############################################################
968#
969# Calling sub TestDirectory
970#
971##############################################################
Patrick Jenkinsc281b0d2006-07-27 19:00:01 +0000972if (!$BuildError) {
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000973 ($SingleSourceProgramsTable, $llcbeta_options) =
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000974 TestDirectory("SingleSource");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000975 WriteFile "$Prefix-SingleSource-Performance.txt", $SingleSourceProgramsTable;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000976 ($MultiSourceProgramsTable, $llcbeta_options) = TestDirectory("MultiSource");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000977 WriteFile "$Prefix-MultiSource-Performance.txt", $MultiSourceProgramsTable;
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000978 if ( ! $NOEXTERNALS ) {
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000979 ($ExternalProgramsTable, $llcbeta_options) = TestDirectory("External");
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000980 WriteFile "$Prefix-External-Performance.txt", $ExternalProgramsTable;
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000981 system "cat $Prefix-SingleSource-Tests.txt " .
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000982 "$Prefix-MultiSource-Tests.txt ".
983 "$Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000984 system "cat $Prefix-SingleSource-Performance.txt " .
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000985 "$Prefix-MultiSource-Performance.txt ".
986 "$Prefix-External-Performance.txt | sort > $Prefix-Performance.txt";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000987 } else {
988 $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
989 if ( $VERBOSE ) {
990 print "External TEST STAGE SKIPPED\n";
991 }
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000992 system "cat $Prefix-SingleSource-Tests.txt " .
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000993 "$Prefix-MultiSource-Tests.txt ".
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000994 " | sort > $Prefix-Tests.txt";
Misha Brukman12c8d1b2009-01-02 16:28:18 +0000995 system "cat $Prefix-SingleSource-Performance.txt " .
Patrick Jenkins4b7f7aa2006-08-17 22:11:03 +0000996 "$Prefix-MultiSource-Performance.txt ".
997 " | sort > $Prefix-Performance.txt";
Reid Spencerfa34d7b2006-08-13 09:53:02 +0000998 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +0000999
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001000 ##############################################################
1001 #
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001002 #
1003 # gathering tests added removed broken information here
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001004 #
1005 #
1006 ##############################################################
1007 my $dejagnu_test_list = ReadFile "$Prefix-Tests.txt";
1008 my @DEJAGNU = split "\n", $dejagnu_test_list;
1009 my ($passes, $fails, $xfails) = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001010
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001011 if(!$NODEJAGNU) {
1012 for ($x=0; $x<@DEJAGNU; $x++) {
1013 if ($DEJAGNU[$x] =~ m/^PASS:/) {
1014 $passes.="$DEJAGNU[$x]\n";
1015 }
1016 elsif ($DEJAGNU[$x] =~ m/^FAIL:/) {
1017 $fails.="$DEJAGNU[$x]\n";
1018 }
1019 elsif ($DEJAGNU[$x] =~ m/^XFAIL:/) {
1020 $xfails.="$DEJAGNU[$x]\n";
1021 }
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001022 }
1023 }
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001024
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001025} #end if !$BuildError
1026
Patrick Jenkins215b48f2006-07-07 18:50:51 +00001027##############################################################
1028#
1029# Getting end timestamp
1030#
1031##############################################################
Patrick Jenkinsb67e1182006-07-21 21:43:09 +00001032$endtime = `date "+20%y-%m-%d %H:%M:%S"`;
Patrick Jenkins215b48f2006-07-07 18:50:51 +00001033
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001034
1035##############################################################
1036#
1037# Place all the logs neatly into one humungous file
1038#
1039##############################################################
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001040if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
1041
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001042$machine_data = "uname: ".`uname -a`.
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001043 "hardware: ".`uname -m`.
1044 "os: ".`uname -sr`.
1045 "name: ".`uname -n`.
1046 "date: ".`date \"+20%y-%m-%d\"`.
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001047 "time: ".`date +\"%H:%M:%S\"`;
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001048
1049my @CVS_DATA;
1050my $cvs_data;
Reid Spencer99e865a2007-04-07 04:41:16 +00001051@CVS_DATA = ReadFile "$COLog";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001052$cvs_data = join("\n", @CVS_DATA);
1053
1054my @BUILD_DATA;
1055my $build_data;
1056@BUILD_DATA = ReadFile "$BuildLog";
1057$build_data = join("\n", @BUILD_DATA);
1058
Patrick Jenkins03137752006-08-21 20:45:57 +00001059my (@DEJAGNU_LOG, @DEJAGNU_SUM, @DEJAGNULOG_FULL, @GCC_VERSION);
1060my ($dejagnutests_log ,$dejagnutests_sum, $dejagnulog_full) = "";
1061my ($gcc_version, $gcc_version_long) = "";
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001062
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001063$gcc_version_long="";
1064if ($GCCPATH ne "") {
1065 $gcc_version_long = `$GCCPATH/gcc --version`;
Jeff Cohen75454222007-04-10 19:13:43 +00001066} elsif ($ENV{"CC"}) {
1067 $gcc_version_long = `$ENV{"CC"} --version`;
Patrick Jenkinsad6f7582006-08-22 18:11:19 +00001068} else {
1069 $gcc_version_long = `gcc --version`;
1070}
1071@GCC_VERSION = split '\n', $gcc_version_long;
1072$gcc_version = $GCC_VERSION[0];
1073
Tanya Lattner849c9a22007-04-13 04:36:48 +00001074$llvmgcc_version_long="";
1075if ($LLVMGCCPATH ne "") {
1076 $llvmgcc_version_long = `$LLVMGCCPATH/llvm-gcc -v 2>&1`;
1077} else {
1078 $llvmgcc_version_long = `llvm-gcc -v 2>&1`;
1079}
1080@LLVMGCC_VERSION = split '\n', $llvmgcc_version_long;
1081$llvmgcc_versionTarget = $LLVMGCC_VERSION[1];
1082$llvmgcc_versionTarget =~ /Target: (.+)/;
1083$targetTriple = $1;
1084
Patrick Jenkins03137752006-08-21 20:45:57 +00001085if(!$BuildError){
1086 @DEJAGNU_LOG = ReadFile "$DejagnuLog";
1087 @DEJAGNU_SUM = ReadFile "$DejagnuSum";
1088 $dejagnutests_log = join("\n", @DEJAGNU_LOG);
1089 $dejagnutests_sum = join("\n", @DEJAGNU_SUM);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001090
Patrick Jenkins03137752006-08-21 20:45:57 +00001091 @DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
1092 $dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
Patrick Jenkins79fbf7f2006-07-14 20:44:09 +00001093}
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001094
1095##############################################################
1096#
1097# Send data via a post request
1098#
1099##############################################################
1100
1101if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
1102
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001103my %hash_of_data = (
1104 'machine_data' => $machine_data,
1105 'build_data' => $build_data,
1106 'gcc_version' => $gcc_version,
1107 'nickname' => $nickname,
1108 'dejagnutime_wall' => $DejagnuWallTime,
1109 'dejagnutime_cpu' => $DejagnuTime,
Reid Spencer99e865a2007-04-07 04:41:16 +00001110 'cvscheckouttime_wall' => $CheckoutTime_Wall,
1111 'cvscheckouttime_cpu' => $CheckoutTime_CPU,
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001112 'configtime_wall' => $ConfigWallTime,
1113 'configtime_cpu'=> $ConfigTime,
1114 'buildtime_wall' => $BuildWallTime,
1115 'buildtime_cpu' => $BuildTime,
1116 'warnings' => $WarningsFile,
1117 'cvsusercommitlist' => $UserCommitList,
1118 'cvsuserupdatelist' => $UserUpdateList,
1119 'cvsaddedfiles' => $CVSAddedFiles,
1120 'cvsmodifiedfiles' => $CVSModifiedFiles,
1121 'cvsremovedfiles' => $CVSRemovedFiles,
1122 'lines_of_code' => $LOC,
1123 'cvs_file_count' => $NumFilesInCVS,
1124 'cvs_dir_count' => $NumDirsInCVS,
1125 'buildstatus' => $BuildStatus,
1126 'singlesource_programstable' => $SingleSourceProgramsTable,
1127 'multisource_programstable' => $MultiSourceProgramsTable,
1128 'externalsource_programstable' => $ExternalProgramsTable,
1129 'llcbeta_options' => $multisource_llcbeta_options,
1130 'warnings_removed' => $WarningsRemoved,
1131 'warnings_added' => $WarningsAdded,
1132 'passing_tests' => $passes,
1133 'expfail_tests' => $xfails,
1134 'unexpfail_tests' => $fails,
1135 'all_tests' => $dejagnu_test_list,
1136 'new_tests' => "",
1137 'removed_tests' => "",
Patrick Jenkinsb9c65eb2006-08-18 18:00:21 +00001138 'dejagnutests_results' => $DejagnuTestResults,
1139 'dejagnutests_log' => $dejagnulog_full,
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001140 'starttime' => $starttime,
1141 'endtime' => $endtime,
1142 'o_file_sizes' => $o_file_sizes,
Tanya Lattner849c9a22007-04-13 04:36:48 +00001143 'a_file_sizes' => $a_file_sizes,
1144 'target_triple' => $targetTriple
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001145);
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001146
Daniel Dunbarf7f02a92009-06-26 22:33:28 +00001147if ($SUBMIT || !($SUBMITAUX eq "")) {
Tanya Lattnerc1611882008-03-10 07:28:08 +00001148 my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
1149 if( $VERBOSE) { print "============================\n$response"; }
1150} else {
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001151 print "============================\n";
1152 foreach $x(keys %hash_of_data){
1153 print "$x => $hash_of_data{$x}\n";
1154 }
Patrick Jenkinsfe030d72006-07-06 21:19:32 +00001155}
1156
1157##############################################################
1158#
1159# Remove the cvs tree...
1160#
1161##############################################################
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001162system ( "$NICE rm -rf $BuildDir")
Daniel Dunbar0c39e382009-07-13 22:17:49 +00001163 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVEATEND);
Misha Brukman12c8d1b2009-01-02 16:28:18 +00001164system ( "$NICE rm -rf $WebDir")
Reid Spencerfa34d7b2006-08-13 09:53:02 +00001165 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);