blob: 25e7db7212efb444b76165cb348f7eadf0c00d71 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001#!/usr/bin/perl
2use POSIX qw(strftime);
3use File::Copy;
Bob Wilson722d58b2009-06-19 17:19:38 +00004use File::Find;
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Brukmanafa1e862009-01-02 16:28:18 +000012# regressions and performance changes. Submits this information
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013# to llvm.org where it is placed into the nightlytestresults database.
14#
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015# Syntax: NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
16# where
17# OPTIONS may include one or more of the following:
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#
Daniel Dunbarae3faf12009-10-19 09:18:24 +000019# MAIN OPTIONS:
20# -config LLVMPATH If specified, use an existing LLVM build and only run and
21# report the test information. The LLVMCONFIG argument should
22# be the path to the llvm-config executable in the LLVM build.
23# This should be the first argument if given. NOT YET
24# IMPLEMENTED.
25# -nickname NAME The NAME argument specifieds the nickname this script
26# will submit to the nightlytest results repository.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027# -submit-server Specifies a server to submit the test results too. If this
Misha Brukmanafa1e862009-01-02 16:28:18 +000028# option is not specified it defaults to
29# llvm.org. This is basically just the address of the
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030# webserver
31# -submit-script Specifies which script to call on the submit server. If
32# this option is not specified it defaults to
Misha Brukmanafa1e862009-01-02 16:28:18 +000033# /nightlytest/NightlyTestAccept.php. This is basically
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034# everything after the www.yourserver.org.
Daniel Dunbar016a4bb2009-05-18 23:24:26 +000035# -submit-aux If specified, an auxiliary script to run in addition to the
36# normal submit script. The script will be passed the path to
37# the "sentdata.txt" file as its sole argument.
Tanya Lattner084a3ee2008-03-10 07:28:08 +000038# -nosubmit Do not report the test results back to a submit server.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#
Daniel Dunbarae3faf12009-10-19 09:18:24 +000040#
41# BUILD OPTIONS (not used with -config):
42# -nocheckout Do not create, checkout, update, or configure
43# the source tree.
44# -noremove Do not remove the BUILDDIR after it has been built.
45# -noremoveresults Do not remove the WEBDIR after it has been built.
46# -nobuild Do not build llvm. If tests are enabled perform them
47# on the llvm build specified in the build directory
48# -release Build an LLVM Release version
49# -release-asserts Build an LLVM ReleaseAsserts version
50# -disable-bindings Disable building LLVM bindings.
Daniel Dunbarae3faf12009-10-19 09:18:24 +000051# -with-clang Checkout Clang source into tools/clang.
52# -compileflags Next argument specifies extra options passed to make when
53# building LLVM.
54# -use-gmake Use gmake instead of the default make command to build
55# llvm and run tests.
56#
57# TESTING OPTIONS:
58# -notest Do not even attempt to run the test programs.
59# -nodejagnu Do not run feature or regression tests
60# -enable-llcbeta Enable testing of beta features in llc.
61# -enable-lli Enable testing of lli (interpreter) features, default is off
62# -disable-pic Disable building with Position Independent Code.
63# -disable-llc Disable LLC tests in the nightly tester.
64# -disable-jit Disable JIT tests in the nightly tester.
65# -disable-cbe Disable C backend tests in the nightly tester.
66# -disable-lto Disable link time optimization.
67# -test-cflags Next argument specifies that C compilation options that
68# override the default when running the testsuite.
69# -test-cxxflags Next argument specifies that C++ compilation options that
70# override the default when running the testsuite.
71# -extraflags Next argument specifies extra options that are passed to
72# compile the tests.
73# -noexternals Do not run the external tests (for cases where povray
74# or SPEC are not installed)
75# -with-externals Specify a directory where the external tests are located.
76#
77# OTHER OPTIONS:
78# -parallel Run parallel jobs with GNU Make (see -parallel-jobs).
79# -parallel-jobs The number of parallel Make jobs to use (default is two).
Daniel Dunbarc5382fb2009-10-19 13:20:56 +000080# -parallel-test Allow parallel execution of llvm-test
Daniel Dunbarae3faf12009-10-19 09:18:24 +000081# -verbose Turn on some debug output
Daniel Dunbarae3faf12009-10-19 09:18:24 +000082# -nice Checkout/Configure/Build with "nice" to reduce impact
83# on busy servers.
84# -f2c Next argument specifies path to F2C utility
85# -gccpath Path to gcc/g++ used to build LLVM
86# -target Specify the target triplet
87# -cflags Next argument specifies that C compilation options that
88# override the default.
89# -cxxflags Next argument specifies that C++ compilation options that
90# override the default.
91# -ldflags Next argument specifies that linker options that override
92# the default.
93#
Daniel Dunbar414cffe2009-10-19 09:18:54 +000094# CVSROOT is ignored, it is passed for backwards compatibility.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095# BUILDDIR is the directory where sources for this test run will be checked out
96# AND objects for this test run will be built. This directory MUST NOT
Daniel Dunbar414cffe2009-10-19 09:18:54 +000097# exist before the script is run; it will be created by the svn checkout
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098# process and erased (unless -noremove is specified; see above.)
99# WEBDIR is the directory into which the test results web page will be written,
100# AND in which the "index.html" is assumed to be a symlink to the most recent
101# copy of the results. This directory will be created if it does not exist.
102# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
103# to. This is the same as you would have for a normal LLVM build.
104#
105##############################################################
106#
107# Getting environment variables
108#
109##############################################################
110my $HOME = $ENV{'HOME'};
111my $SVNURL = $ENV{"SVNURL"};
Duncan Sands01388f92009-06-12 13:02:52 +0000112$SVNURL = 'http://llvm.org/svn/llvm-project' unless $SVNURL;
Evan Chengb6d7fc32009-06-18 21:39:50 +0000113my $TestSVNURL = $ENV{"TestSVNURL"};
Evan Chenge45329e2009-07-14 06:23:41 +0000114$TestSVNURL = 'http://llvm.org/svn/llvm-project' unless $TestSVNURL;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115my $BuildDir = $ENV{'BUILDDIR'};
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116my $WebDir = $ENV{'WEBDIR'};
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000118my $LLVMSrcDir = $ENV{'LLVMSRCDIR'};
119$LLVMSrcDir = "$BuildDir/llvm" unless $LLVMSrcDir;
120my $LLVMObjDir = $ENV{'LLVMOBJDIR'};
121$LLVMObjDir = "$BuildDir/llvm" unless $LLVMObjDir;
122my $LLVMTestDir = $ENV{'LLVMTESTDIR'};
123$LLVMTestDir = "$BuildDir/llvm/projects/llvm-test" unless $LLVMTestDir;
124
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125##############################################################
126#
127# Calculate the date prefix...
128#
129##############################################################
130@TIME = localtime;
Daniel Dunbar93ad6a82009-07-01 14:52:59 +0000131my $DATE = sprintf "%4d-%02d-%02d_%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3], $TIME[1], $TIME[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132
133##############################################################
134#
135# Parse arguments...
136#
137##############################################################
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000138$CONFIG_PATH="";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139$CONFIGUREARGS="";
140$nickname="";
141$NOTEST=0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142$MAKECMD="make";
143$SUBMITSERVER = "llvm.org";
144$SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.php";
Daniel Dunbar016a4bb2009-05-18 23:24:26 +0000145$SUBMITAUX="";
Tanya Lattner084a3ee2008-03-10 07:28:08 +0000146$SUBMIT = 1;
Daniel Dunbarf8cdaec2009-05-28 22:45:24 +0000147$PARALLELJOBS = "2";
Bill Wendling085ff3f2009-07-16 22:59:17 +0000148my $TESTFLAGS="";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000149
150while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
151 shift;
152 last if /^--$/; # Stop processing arguments on --
153
154 # List command line options here...
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000155 if (/^-config$/) { $CONFIG_PATH = "$ARGV[0]"; shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 if (/^-noremove$/) { $NOREMOVE = 1; next; }
Daniel Dunbard3ecefe2009-07-13 22:17:49 +0000158 if (/^-noremoveatend$/) { $NOREMOVEATEND = 1; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 if (/^-noremoveresults$/){ $NOREMOVERESULTS = 1; next; }
Daniel Dunbar2041d9a2009-06-02 21:14:15 +0000160 if (/^-notest$/) { $NOTEST = 1; next; }
161 if (/^-norunningtests$/) { next; } # Backward compatibility, ignored.
Daniel Dunbarf8cdaec2009-05-28 22:45:24 +0000162 if (/^-parallel-jobs$/) { $PARALLELJOBS = "$ARGV[0]"; shift; next;}
Daniel Dunbar96aab412009-10-19 13:20:50 +0000163 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j$PARALLELJOBS"; next; }
Daniel Dunbarc5382fb2009-10-19 13:20:56 +0000164 if (/^-parallel-test$/) { $PROGTESTOPTS .= " ENABLE_PARALLEL_REPORT=1"; next; }
Duncan Sands01388f92009-06-12 13:02:52 +0000165 if (/^-with-clang$/) { $WITHCLANG = 1; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
167 "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
168 if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
Dan Gohmanbd399762008-10-30 01:08:03 +0000169 "DISABLE_ASSERTIONS=1 ".
Misha Brukmanafa1e862009-01-02 16:28:18 +0000170 "OPTIMIZE_OPTION=-O2";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 $BUILDTYPE="release-asserts"; next;}
172 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
Duncan Sands01388f92009-06-12 13:02:52 +0000173 if (/^-disable-pic$/) { $CONFIGUREARGS .= " --enable-pic=no"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000175 $CONFIGUREARGS .= " --enable-lli"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000177 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
179 $CONFIGUREARGS .= " --disable-jit"; next; }
Daniel Dunbar31a1f1c2009-03-10 19:33:13 +0000180 if (/^-disable-bindings$/) { $CONFIGUREARGS .= " --disable-bindings"; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
Evan Cheng32efae02008-01-12 04:27:18 +0000182 if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
Evan Cheng08206772008-01-14 17:58:03 +0000183 if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 if (/^-verbose$/) { $VERBOSE = 1; next; }
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000185 if (/^-teelogs$/) { $TEELOGS = 1; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000186 if (/^-nice$/) { $NICE = "nice "; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000187 if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000189 if (/^-with-externals$/) { $CONFIGUREARGS .= " --with-externals=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 shift; next; }
Daniel Dunbardd9c4aa2009-07-13 22:31:58 +0000191 if (/^-configure-args$/) { $CONFIGUREARGS .= " $ARGV[0]";
192 shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 if (/^-submit-server/) { $SUBMITSERVER = "$ARGV[0]"; shift; next; }
194 if (/^-submit-script/) { $SUBMITSCRIPT = "$ARGV[0]"; shift; next; }
Daniel Dunbar016a4bb2009-05-18 23:24:26 +0000195 if (/^-submit-aux/) { $SUBMITAUX = "$ARGV[0]"; shift; next; }
Tanya Lattner084a3ee2008-03-10 07:28:08 +0000196 if (/^-nosubmit$/) { $SUBMIT = 0; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000197 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
198 if (/^-gccpath/) { $CONFIGUREARGS .=
199 " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 $GCCPATH=$ARGV[0]; shift; next; }
201 else { $GCCPATH=""; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000202 if (/^-target/) { $CONFIGUREARGS .= " --target=$ARGV[0]";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000204 if (/^-cflags/) { $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000206 if (/^-cxxflags/) { $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000208 if (/^-ldflags/) { $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 shift; next; }
Bill Wendling085ff3f2009-07-16 22:59:17 +0000210 if (/^-test-cflags/) { $TESTFLAGS = "$TESTFLAGS CFLAGS=\'$ARGV[0]\'";
211 shift; next; }
212 if (/^-test-cxxflags/) { $TESTFLAGS = "$TESTFLAGS CXXFLAGS=\'$ARGV[0]\'";
213 shift; next; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 if (/^-compileflags/) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; }
215 if (/^-use-gmake/) { $MAKECMD = "gmake"; shift; next; }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000216 if (/^-extraflags/) { $CONFIGUREARGS .=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 " --with-extra-options=\'$ARGV[0]\'"; shift; next;}
218 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
219 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
220 if (/^-nobuild$/) { $NOBUILD = 1; next; }
221 print "Unknown option: $_ : ignoring!\n";
222}
223
224if ($ENV{'LLVMGCCDIR'}) {
225 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
Bob Wilsonc6d296b2009-03-12 19:47:24 +0000226 $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227}
228else {
229 $LLVMGCCPATH = "";
230}
231
232if ($CONFIGUREARGS !~ /--disable-jit/) {
233 $CONFIGUREARGS .= " --enable-jit";
234}
235
Daniel Dunbardce5acc2009-10-19 09:19:19 +0000236if (@ARGV != 0 and @ARGV != 3) {
237 die "error: must specify 0 or 3 options!";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238}
239
240if (@ARGV == 3) {
Daniel Dunbardce5acc2009-10-19 09:19:19 +0000241 if ($CONFIG_PATH ne "") {
242 die "error: arguments are unsupported in -config mode,";
243 }
244
Daniel Dunbar414cffe2009-10-19 09:18:54 +0000245 # ARGV[0] used to be the CVS root, ignored for backward compatibility.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 $BuildDir = $ARGV[1];
247 $WebDir = $ARGV[2];
248}
249
Daniel Dunbar414cffe2009-10-19 09:18:54 +0000250if ($BuildDir eq "" or
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 $WebDir eq "") {
Daniel Dunbar414cffe2009-10-19 09:18:54 +0000252 die("please specify a build directory, and a web directory");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 }
Misha Brukmanafa1e862009-01-02 16:28:18 +0000254
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255if ($nickname eq "") {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000256 die ("Please invoke NewNightlyTest.pl with command line option " .
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 "\"-nickname <nickname>\"");
258}
259
260if ($BUILDTYPE ne "release" && $BUILDTYPE ne "release-asserts") {
261 $BUILDTYPE = "debug";
262}
263
Daniel Dunbardce5acc2009-10-19 09:19:19 +0000264if ($CONFIG_PATH ne "") {
265 die "error: -config mode is not yet implemented,";
266}
267
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268##############################################################
269#
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000270# Define the file names we'll use
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271#
272##############################################################
273my $Prefix = "$WebDir/$DATE";
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000274my $ConfigureLog = "$Prefix-Configure-Log.txt";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275my $BuildLog = "$Prefix-Build-Log.txt";
276my $COLog = "$Prefix-CVS-Log.txt";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
278my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
279my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
280my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
281my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000282my $DejagnuLog = "$Prefix-DejagnuTests-Log.txt";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283if (! -d $WebDir) {
Daniel Dunbar6981e022009-10-19 13:19:53 +0000284 mkdir $WebDir, 0777 or die "Unable to create web directory: '$WebDir'.";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 if($VERBOSE){
286 warn "$WebDir did not exist; creating it.\n";
287 }
288}
289
290if ($VERBOSE) {
291 print "INITIALIZED\n";
Daniel Dunbaraffc0a52009-10-19 09:18:46 +0000292 print "SVN URL = $SVNURL\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 print "COLog = $COLog\n";
294 print "BuildDir = $BuildDir\n";
295 print "WebDir = $WebDir\n";
296 print "Prefix = $Prefix\n";
297 print "BuildLog = $BuildLog\n";
298}
299
300##############################################################
301#
302# Helper functions
303#
304##############################################################
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000305
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306sub GetDir {
307 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;
312}
313
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000314sub RunLoggedCommand {
315 my $Command = shift;
316 my $Log = shift;
Daniel Dunbare2d4fc52009-06-26 02:30:49 +0000317 my $Title = shift;
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000318 if ($TEELOGS) {
Daniel Dunbare2d4fc52009-06-26 02:30:49 +0000319 if ($VERBOSE) {
320 print "$Title\n";
321 print "$Command 2>&1 | tee $Log\n";
322 }
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000323 system "$Command 2>&1 | tee $Log";
324 } else {
Daniel Dunbare2d4fc52009-06-26 02:30:49 +0000325 if ($VERBOSE) {
326 print "$Title\n";
327 print "$Command 2>&1 > $Log\n";
328 }
Daniel Dunbar83968bb2009-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 Dunbare2d4fc52009-06-26 02:30:49 +0000336 my $Title = shift;
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000337 if ($TEELOGS) {
Daniel Dunbare2d4fc52009-06-26 02:30:49 +0000338 if ($VERBOSE) {
339 print "$Title\n";
340 print "$Command 2>&1 | tee -a $Log\n";
341 }
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000342 system "$Command 2>&1 | tee -a $Log";
343 } else {
Daniel Dunbare2d4fc52009-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 Dunbar83968bb2009-06-26 01:53:05 +0000349 }
350}
351
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352sub GetRegex { # (Regex with ()'s, value)
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000353 if ($_[1] =~ /$_[0]/m) {
354 return $1;
355 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 return "0";
357}
358
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359sub ChangeDir { # directory, logical name
360 my ($dir,$name) = @_;
361 chomp($dir);
362 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
363 $result = chdir($dir);
364 if (!$result) {
Daniel Dunbar96aab412009-10-19 13:20:50 +0000365 print "ERROR!!! Cannot change directory to: $name ($dir) because $!\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 return false;
367 }
368 return true;
369}
370
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371sub ReadFile {
372 if (open (FILE, $_[0])) {
373 undef $/;
374 my $Ret = <FILE>;
375 close FILE;
376 $/ = '\n';
377 return $Ret;
378 } else {
379 print "Could not open file '$_[0]' for reading!\n";
380 return "";
381 }
382}
383
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384sub WriteFile { # (filename, contents)
385 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!\n";
386 print FILE $_[1];
387 close FILE;
388}
389
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390sub CopyFile { #filename, newfile
391 my ($file, $newfile) = @_;
392 chomp($file);
393 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
394 copy($file, $newfile);
395}
396
397#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398#
Misha Brukmanafa1e862009-01-02 16:28:18 +0000399# This function is meant to read in the dejagnu sum file and
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400# return a string with only the results (i.e. PASS/FAIL/XPASS/
401# XFAIL).
402#
403#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
404sub GetDejagnuTestResults { # (filename, log)
405 my ($filename, $DejagnuLog) = @_;
406 my @lines;
407 $/ = "\n"; #Make sure we're going line at a time.
408
409 if( $VERBOSE) { print "DEJAGNU TEST RESULTS:\n"; }
410
411 if (open SRCHFILE, $filename) {
412 # Process test results
413 while ( <SRCHFILE> ) {
414 if ( length($_) > 1 ) {
415 chomp($_);
416 if ( m/^(PASS|XPASS|FAIL|XFAIL): .*\/llvm\/test\/(.*)$/ ) {
417 push(@lines, "$1: test/$2");
418 }
419 }
420 }
421 }
422 close SRCHFILE;
423
424 my $content = join("\n", @lines);
425 return $content;
426}
427
428
429
430#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
431#
432# This function acts as a mini web browswer submitting data
433# to our central server via the post method
434#
435#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000436sub SendData {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437 $host = $_[0];
438 $file = $_[1];
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000439 $variables = $_[2];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
Daniel Dunbara2533002009-05-28 18:31:40 +0000441 # Write out the "...-sentdata.txt" file.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442
Daniel Dunbara2533002009-05-28 18:31:40 +0000443 my $sentdata="";
444 foreach $x (keys (%$variables)){
445 $value = $variables->{$x};
446 $sentdata.= "$x => $value\n";
447 }
448 WriteFile "$Prefix-sentdata.txt", $sentdata;
449
450 if (!($SUBMITAUX eq "")) {
Daniel Dunbar3b377ef2009-06-26 22:33:28 +0000451 system "$SUBMITAUX \"$Prefix-sentdata.txt\"";
452 }
453
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000454 if (!$SUBMIT) {
Daniel Dunbar3b377ef2009-06-26 22:33:28 +0000455 return "Skipped standard submit.\n";
Daniel Dunbara2533002009-05-28 18:31:40 +0000456 }
457
458 # Create the content to send to the server.
459
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 my $content;
461 foreach $key (keys (%$variables)){
462 $value = $variables->{$key};
463 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
464 $content .= "$key=$value&";
465 }
466
Daniel Dunbara2533002009-05-28 18:31:40 +0000467 # Send the data to the server.
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000468 #
Daniel Dunbara2533002009-05-28 18:31:40 +0000469 # FIXME: This code should be more robust?
Daniel Dunbarae3faf12009-10-19 09:18:24 +0000470
Daniel Dunbara2533002009-05-28 18:31:40 +0000471 $port=80;
472 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
473 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or
474 die "Bad socket\n";
475 connect SOCK, $socketaddr or die "Bad connection\n";
476 select((select(SOCK), $| = 1)[0]);
477
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 $length = length($content);
479
480 my $send= "POST $file HTTP/1.0\n";
481 $send.= "Host: $host\n";
482 $send.= "Content-Type: application/x-www-form-urlencoded\n";
483 $send.= "Content-length: $length\n\n";
484 $send.= "$content";
485
486 print SOCK $send;
487 my $result;
488 while(<SOCK>){
489 $result .= $_;
490 }
491 close(SOCK);
492
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 return $result;
494}
495
496##############################################################
497#
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000498# Individual Build & Test Functions
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499#
500##############################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000502# Create the source repository directory.
Daniel Dunbar4493e942009-10-19 13:20:06 +0000503sub CheckoutSource {
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000504 if (-d $BuildDir) {
505 if (!$NOREMOVE) {
506 if ( $VERBOSE ) {
507 print "Build directory exists! Removing it\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 }
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000509 system "rm -rf $BuildDir";
Daniel Dunbar4493e942009-10-19 13:20:06 +0000510 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000511 } else {
512 if ( $VERBOSE ) {
513 print "Build directory exists!\n";
514 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 }
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000516 } else {
517 mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
518 }
Daniel Dunbar4493e942009-10-19 13:20:06 +0000519
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000520 ChangeDir( $BuildDir, "checkout directory" );
521 my $SVNCMD = "$NICE svn co --non-interactive";
522 RunLoggedCommand("( time -p $SVNCMD $SVNURL/llvm/trunk llvm; cd llvm/projects ; " .
523 " $SVNCMD $TestSVNURL/test-suite/trunk llvm-test )", $COLog,
524 "CHECKOUT LLVM");
525 if ($WITHCLANG) {
526 RunLoggedCommand("( cd llvm/tools ; " .
527 " $SVNCMD $SVNURL/cfe/trunk clang )", $COLog,
528 "CHECKOUT CLANG");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 }
530}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000532# Build the entire tree, saving build messages to the build log. Returns false
533# on build failure.
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000534sub BuildLLVM {
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000535 my $EXTRAFLAGS = "--enable-spec --with-objroot=.";
536 RunLoggedCommand("(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) ",
537 $ConfigureLog, "CONFIGURE");
538 # Build the entire tree, capturing the output into $BuildLog
Daniel Dunbar96aab412009-10-19 13:20:50 +0000539 RunAppendingLoggedCommand("($NICE $MAKECMD $MAKEOPTS clean)", $BuildLog, "BUILD CLEAN");
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000540 RunAppendingLoggedCommand("(time -p $NICE $MAKECMD $MAKEOPTS)", $BuildLog, "BUILD");
541
542 if (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
543 `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l` + 0) {
544 return 0;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000545 }
546
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000547 return 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548}
549
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000550# Running dejagnu tests and save results to log.
551sub RunDejaGNUTests {
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000552 # Run the feature and regression tests, results are put into testrun.sum and
553 # the full log in testrun.log.
Daniel Dunbar96aab412009-10-19 13:20:50 +0000554 system "rm -f test/testrun.log test/testrun.sum";
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000555 RunLoggedCommand("(time -p $MAKECMD $MAKEOPTS check)", $DejagnuLog, "DEJAGNU");
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000556
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000557 # Copy the testrun.log and testrun.sum to our webdir.
558 CopyFile("test/testrun.log", $DejagnuLog);
559 CopyFile("test/testrun.sum", $DejagnuSum);
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000560
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000561 return GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000563
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000564# Run the named tests (i.e. "SingleSource" "MultiSource" "External")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565sub TestDirectory {
Misha Brukmanafa1e862009-01-02 16:28:18 +0000566 my $SubDir = shift;
Daniel Dunbar83968bb2009-06-26 01:53:05 +0000567 ChangeDir( "$LLVMTestDir/$SubDir",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 "Programs Test Subdirectory" ) || return ("", "");
Misha Brukmanafa1e862009-01-02 16:28:18 +0000569
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
Misha Brukmanafa1e862009-01-02 16:28:18 +0000571
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000572 # Run the programs tests... creating a report.nightly.csv file.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000573 my $LLCBetaOpts = "";
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000574 RunLoggedCommand("$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
575 "$TESTFLAGS TEST=nightly",
576 $ProgramTestLog, "TEST DIRECTORY $SubDir");
577 $LLCBetaOpts = `$MAKECMD print-llcbeta-option`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578
579 my $ProgramsTable;
580 if (`grep '^$MAKECMD\[^:]: .*Error' $ProgramTestLog | wc -l` + 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 $ProgramsTable="Error running test $SubDir\n";
582 print "ERROR TESTING\n";
583 } elsif (`grep '^$MAKECMD\[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 $ProgramsTable="Makefile error running tests $SubDir!\n";
585 print "ERROR TESTING\n";
586 } else {
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000587 # Create a list of the tests which were run...
588 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog ".
589 "| sort > $Prefix-$SubDir-Tests.txt";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 }
591 $ProgramsTable = ReadFile "report.nightly.csv";
592
593 ChangeDir( "../../..", "Programs Test Parent Directory" );
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000594 return ($ProgramsTable, $LLCBetaOpts);
595}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596
Daniel Dunbarf4192812009-10-19 13:20:44 +0000597# Run all the nightly tests and return the program tables and the list of tests,
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000598# passes, fails, and xfails.
Daniel Dunbar2942b022009-10-19 13:20:25 +0000599sub RunNightlyTest() {
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000600 ($SSProgs, $llcbeta_options) = TestDirectory("SingleSource");
601 WriteFile "$Prefix-SingleSource-Performance.txt", $SSProgs;
602 ($MSProgs, $llcbeta_options) = TestDirectory("MultiSource");
603 WriteFile "$Prefix-MultiSource-Performance.txt", $MSProgs;
604 if ( ! $NOEXTERNALS ) {
605 ($ExtProgs, $llcbeta_options) = TestDirectory("External");
606 WriteFile "$Prefix-External-Performance.txt", $ExtProgs;
607 system "cat $Prefix-SingleSource-Tests.txt " .
608 "$Prefix-MultiSource-Tests.txt ".
609 "$Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
610 system "cat $Prefix-SingleSource-Performance.txt " .
611 "$Prefix-MultiSource-Performance.txt ".
612 "$Prefix-External-Performance.txt | sort > $Prefix-Performance.txt";
613 } else {
614 $ExtProgs = "External TEST STAGE SKIPPED\n";
615 if ( $VERBOSE ) {
616 print "External TEST STAGE SKIPPED\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 }
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000618 system "cat $Prefix-SingleSource-Tests.txt " .
619 "$Prefix-MultiSource-Tests.txt ".
620 " | sort > $Prefix-Tests.txt";
621 system "cat $Prefix-SingleSource-Performance.txt " .
622 "$Prefix-MultiSource-Performance.txt ".
623 " | sort > $Prefix-Performance.txt";
624 }
Daniel Dunbar2942b022009-10-19 13:20:25 +0000625
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000626 # Compile passes, fails, xfails.
Daniel Dunbarf4192812009-10-19 13:20:44 +0000627 my $All = (ReadFile "$Prefix-Tests.txt");
628 my @TestSuiteResultLines = split "\n", $All;
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000629 my ($Passes, $Fails, $XFails) = "";
Daniel Dunbar2942b022009-10-19 13:20:25 +0000630
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000631 for ($x=0; $x < @TestSuiteResultLines; $x++) {
632 if (@TestSuiteResultLines[$x] =~ m/^PASS:/) {
633 $Passes .= "$TestSuiteResultLines[$x]\n";
634 }
635 elsif (@TestSuiteResultLines[$x] =~ m/^FAIL:/) {
636 $Fails .= "$TestSuiteResultLines[$x]\n";
637 }
638 elsif (@TestSuiteResultLines[$x] =~ m/^XFAIL:/) {
639 $XFails .= "$TestSuiteResultLines[$x]\n";
Daniel Dunbar2942b022009-10-19 13:20:25 +0000640 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 }
642
Daniel Dunbarf4192812009-10-19 13:20:44 +0000643 return ($SSProgs, $MSProgs, $ExtProgs, $All, $Passes, $Fails, $XFails);
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000644}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000646##############################################################
647#
648# The actual NewNightlyTest logic.
649#
650##############################################################
651
652$starttime = `date "+20%y-%m-%d %H:%M:%S"`;
653
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000654if (!$NOCHECKOUT) {
655 CheckoutSource();
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000656}
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000657
658# Build LLVM.
659my $BuildError = 0, $BuildStatus = "OK";
660ChangeDir( $LLVMSrcDir , "llvm source directory") ;
661if ($NOCHECKOUT || $NOBUILD) {
662 $BuildStatus = "Skipped by user";
663} else {
664 if (!BuildLLVM()) {
665 if( $VERBOSE) { print "\n***ERROR BUILDING TREE\n\n"; }
666 $BuildError = 1;
667 $BuildStatus = "Error: compilation aborted";
668 $NODEJAGNU=1;
669 }
670}
671
672# Run DejaGNU.
673my $DejagnuTestResults = "Dejagnu skipped by user choice.";
674if (!$NODEJAGNU && !$BuildError) {
675 $DejagnuTestResults = RunDejaGNUTests();
676}
677
678# Run the llvm-test tests.
Daniel Dunbar2942b022009-10-19 13:20:25 +0000679my ($SingleSourceProgramsTable, $MultiSourceProgramsTable, $ExternalProgramsTable,
Daniel Dunbarf4192812009-10-19 13:20:44 +0000680 $all_tests, $passes, $fails, $xfails) = "";
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000681if (!$NOTEST && !$BuildError) {
682 ($SingleSourceProgramsTable, $MultiSourceProgramsTable, $ExternalProgramsTable,
Daniel Dunbarf4192812009-10-19 13:20:44 +0000683 $all_tests, $passes, $fails, $xfails) = RunNightlyTest();
Daniel Dunbara2b34e32009-10-19 13:20:38 +0000684}
Daniel Dunbar2942b022009-10-19 13:20:25 +0000685
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686$endtime = `date "+20%y-%m-%d %H:%M:%S"`;
687
Daniel Dunbar96aab412009-10-19 13:20:50 +0000688# The last bit of logic is to remove the build and web dirs, after sending data
689# to the server.
690
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000691##############################################################
692#
693# Accumulate the information to send to the server.
694#
695##############################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
698
Misha Brukmanafa1e862009-01-02 16:28:18 +0000699$machine_data = "uname: ".`uname -a`.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000700 "hardware: ".`uname -m`.
701 "os: ".`uname -sr`.
702 "name: ".`uname -n`.
703 "date: ".`date \"+20%y-%m-%d\"`.
Misha Brukmanafa1e862009-01-02 16:28:18 +0000704 "time: ".`date +\"%H:%M:%S\"`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000706# Get gcc version.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000707my $gcc_version_long = "";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708if ($GCCPATH ne "") {
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000709 $gcc_version_long = `$GCCPATH/gcc --version`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710} elsif ($ENV{"CC"}) {
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000711 $gcc_version_long = `$ENV{"CC"} --version`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712} else {
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000713 $gcc_version_long = `gcc --version`;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714}
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000715my $gcc_version = (split '\n', $gcc_version_long)[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716
Daniel Dunbar2b9446e2009-10-19 13:20:31 +0000717# Get llvm-gcc target triple.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000718my $llvmgcc_version_long = "";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719if ($LLVMGCCPATH ne "") {
720 $llvmgcc_version_long = `$LLVMGCCPATH/llvm-gcc -v 2>&1`;
721} else {
722 $llvmgcc_version_long = `llvm-gcc -v 2>&1`;
723}
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000724(split '\n', $llvmgcc_version_long)[1] =~ /Target: (.+)/;
725my $targetTriple = $1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000727# Logs.
728my $ConfigureLogData = ReadFile $ConfigureLog;
729my $BuildLogData = ReadFile $BuildLog;
730my $DejagnuLogData = ReadFile $DejagnuLog;
731my $CheckoutLogData = ReadFile $COLog;
732
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000733# Checkout info.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000734my $CheckoutTime_Wall = GetRegex "^real ([0-9.]+)", $CheckoutLogData;
735my $CheckoutTime_User = GetRegex "^user ([0-9.]+)", $CheckoutLogData;
736my $CheckoutTime_Sys = GetRegex "^sys ([0-9.]+)", $CheckoutLogData;
Daniel Dunbar4493e942009-10-19 13:20:06 +0000737my $CheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
738
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000739# Configure info.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000740my $ConfigTimeU = GetRegex "^user ([0-9.]+)", $ConfigureLogData;
741my $ConfigTimeS = GetRegex "^sys ([0-9.]+)", $ConfigureLogData;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000742my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000743my $ConfigWallTime = GetRegex "^real ([0-9.]+)",$ConfigureLogData;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000744$ConfigTime=-1 unless $ConfigTime;
745$ConfigWallTime=-1 unless $ConfigWallTime;
746
747# Build info.
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000748my $BuildTimeU = GetRegex "^user ([0-9.]+)", $BuildLogData;
749my $BuildTimeS = GetRegex "^sys ([0-9.]+)", $BuildLogData;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000750my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000751my $BuildWallTime = GetRegex "^real ([0-9.]+)", $BuildLogData;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000752$BuildTime=-1 unless $BuildTime;
753$BuildWallTime=-1 unless $BuildWallTime;
754
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000755# DejaGNU info.
756my $DejagnuTimeU = GetRegex "^user ([0-9.]+)", $DejagnuLogData;
757my $DejagnuTimeS = GetRegex "^sys ([0-9.]+)", $DejagnuLogData;
758$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
759$DejagnuWallTime = GetRegex "^real ([0-9.]+)", $DejagnuLogData;
760$DejagnuTime = "0.0" unless $DejagnuTime;
761$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
Daniel Dunbarf2ec0092009-10-19 13:20:13 +0000762
Daniel Dunbar96aab412009-10-19 13:20:50 +0000763if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
764
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765my %hash_of_data = (
766 'machine_data' => $machine_data,
Daniel Dunbarce25daf2009-10-19 13:20:19 +0000767 'build_data' => $ConfigureLogData . $BuildLogData,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 'gcc_version' => $gcc_version,
769 'nickname' => $nickname,
770 'dejagnutime_wall' => $DejagnuWallTime,
771 'dejagnutime_cpu' => $DejagnuTime,
772 'cvscheckouttime_wall' => $CheckoutTime_Wall,
773 'cvscheckouttime_cpu' => $CheckoutTime_CPU,
774 'configtime_wall' => $ConfigWallTime,
775 'configtime_cpu'=> $ConfigTime,
776 'buildtime_wall' => $BuildWallTime,
777 'buildtime_cpu' => $BuildTime,
Daniel Dunbar96aab412009-10-19 13:20:50 +0000778 'buildstatus' => $BuildStatus,
779 'singlesource_programstable' => $SingleSourceProgramsTable,
780 'multisource_programstable' => $MultiSourceProgramsTable,
781 'externalsource_programstable' => $ExternalProgramsTable,
782 'llcbeta_options' => $llcbeta_options,
783 'passing_tests' => $passes,
784 'expfail_tests' => $xfails,
785 'unexpfail_tests' => $fails,
786 'all_tests' => $all_tests,
787 'dejagnutests_results' => $DejagnuTestResults,
788 'dejagnutests_log' => $DejagnuLogData,
789 'starttime' => $starttime,
790 'endtime' => $endtime,
791 'target_triple' => $targetTriple,
792
793 # Unused, but left around for backwards compatability.
Daniel Dunbar6981e022009-10-19 13:19:53 +0000794 'warnings' => "",
Daniel Dunbar9ec7b9e2009-10-19 09:19:09 +0000795 'cvsusercommitlist' => "",
796 'cvsuserupdatelist' => "",
797 'cvsaddedfiles' => "",
798 'cvsmodifiedfiles' => "",
799 'cvsremovedfiles' => "",
800 'lines_of_code' => "",
801 'cvs_file_count' => 0,
802 'cvs_dir_count' => 0,
Daniel Dunbar6981e022009-10-19 13:19:53 +0000803 'warnings_removed' => "",
804 'warnings_added' => "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 'new_tests' => "",
806 'removed_tests' => "",
Daniel Dunbar3c52ad12009-10-19 13:20:00 +0000807 'o_file_sizes' => "",
Daniel Dunbar96aab412009-10-19 13:20:50 +0000808 'a_file_sizes' => ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809);
810
Daniel Dunbar3b377ef2009-06-26 22:33:28 +0000811if ($SUBMIT || !($SUBMITAUX eq "")) {
Tanya Lattner084a3ee2008-03-10 07:28:08 +0000812 my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
813 if( $VERBOSE) { print "============================\n$response"; }
814} else {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 print "============================\n";
816 foreach $x(keys %hash_of_data){
817 print "$x => $hash_of_data{$x}\n";
818 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819}
820
821##############################################################
822#
Daniel Dunbar414cffe2009-10-19 09:18:54 +0000823# Remove the source tree...
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824#
825##############################################################
Misha Brukmanafa1e862009-01-02 16:28:18 +0000826system ( "$NICE rm -rf $BuildDir")
Daniel Dunbard3ecefe2009-07-13 22:17:49 +0000827 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVEATEND);
Misha Brukmanafa1e862009-01-02 16:28:18 +0000828system ( "$NICE rm -rf $WebDir")
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 if (!$NOCHECKOUT and !$NOREMOVE and !$NOREMOVERESULTS);