blob: 76d477fc36ee033aa53991e8e3e995313644a125 [file] [log] [blame]
Patrick Jenkins0e316b42006-07-06 21:19:32 +00001#!/usr/bin/perl
2
3use POSIX qw(strftime);
4use File::Copy;
5use 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
12# regressions and performance changes. Submits this information
13# to llvm.org where it is placed into the nightlytestresults database.
14#
15# Modified heavily by Patrick Jenkins, July 2006
16#
17# Syntax: NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
18# where
19# OPTIONS may include one or more of the following:
20# -nocheckout Do not create, checkout, update, or configure
21# the source tree.
22# -noremove Do not remove the BUILDDIR after it has been built.
23# -nobuild Do not build llvm. If tests are enabled perform them
24# on the llvm build specified in the build directory
25# -notest Do not even attempt to run the test programs. Implies
26# -norunningtests.
27# -norunningtests Do not run the Olden benchmark suite with
28# LARGE_PROBLEM_SIZE enabled.
29# -noexternals Do not run the external tests (for cases where povray
30# or SPEC are not installed)
31# -with-externals Specify a directory where the external tests are located.
32# -nodejagnu Do not run feature or regression tests
33# -parallel Run two parallel jobs with GNU Make.
34# -release Build an LLVM Release version
35# -enable-llcbeta Enable testing of beta features in llc.
36# -disable-llc Disable LLC tests in the nightly tester.
37# -disable-jit Disable JIT tests in the nightly tester.
38# -disable-cbe Disable C backend tests in the nightly tester.
39# -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)
49# -target Specify the target triplet
50# -cflags Next argument specifies that C compilation options that
51# override the default.
52# -cxxflags Next argument specifies that C++ compilation options that
53# override the default.
54# -ldflags Next argument specifies that linker options that override
55# the default.
56# -extraflags Next argument specifies extra options that are passed to
57# compile the tests.
58#
59# ---------------- Options to configure llvm-test ----------------------------
60# -spec2000path Path to the benchspec directory in the SPEC 2000 distro
61# -spec95path Path to the benchspec directory in the SPEC 95 distro.
62# -povraypath Path to the povray sources
63# -namdpath Path to the namd sources
64#
65# CVSROOT is the CVS repository from which the tree will be checked out,
66# specified either in the full :method:user@host:/dir syntax, or
67# just /dir if using a local repo.
68# BUILDDIR is the directory where sources for this test run will be checked out
69# AND objects for this test run will be built. This directory MUST NOT
70# exist before the script is run; it will be created by the cvs checkout
71# process and erased (unless -noremove is specified; see above.)
72# WEBDIR is the directory into which the test results web page will be written,
73# AND in which the "index.html" is assumed to be a symlink to the most recent
74# copy of the results. This directory will be created if it does not exist.
75# LLVMGCCDIR is the directory in which the LLVM GCC Front End is installed
76# to. This is the same as you would have for a normal LLVM build.
77#
78##############################################################
79#
80# Getting environment variables
81#
82##############################################################
83my $HOME = $ENV{'HOME'};
84my $CVSRootDir = $ENV{'CVSROOT'};
85 $CVSRootDir = "/home/vadve/shared/PublicCVS"
86 unless $CVSRootDir;
87my $BuildDir = $ENV{'BUILDDIR'};
88 $BuildDir = "$HOME/buildtest"
89 unless $BuildDir;
90my $WebDir = $ENV{'WEBDIR'};
91 $WebDir = "$HOME/cvs/testresults-X86"
92 unless $WebDir;
93
94##############################################################
95#
96# Calculate the date prefix...
97#
98##############################################################
99@TIME = localtime;
100my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
101my $DateString = strftime "%B %d, %Y", localtime;
102my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
103
104##############################################################
105#
106# Parse arguments...
107#
108##############################################################
109$CONFIGUREARGS="";
110
111$NOTEST=0;
112$NORUNNINGTESTS=0;
113
114while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
115 shift;
116 last if /^--$/; # Stop processing arguments on --
117
118 # List command line options here...
119 if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
120 if (/^-nocvsstats$/) { $NOCVSSTATS = 1; next; }
121 if (/^-noremove$/) { $NOREMOVE = 1; next; }
122 if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
123 if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
124 if (/^-parallel$/) { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
125 if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 OPTIMIZE_OPTION=-O2"; next; }
126 if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
127 if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
128 $CONFIGUREARGS .= " --disable-llc_diffs"; next; }
129 if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
130 $CONFIGUREARGS .= " --disable-jit"; next; }
131 if (/^-verbose$/) { $VERBOSE = 1; next; }
132 if (/^-debug$/) { $DEBUG = 1; next; }
133 if (/^-nice$/) { $NICE = "nice "; next; }
134 if (/^-f2c$/) {
135 $CONFIGUREARGS .= " --with-f2c=$ARGV[0]"; shift; next;
136 }
137 if (/^-with-externals/) {
138 $CONFIGUREARGS .= "--with-externals=$ARGV[0]"; shift; next;
139 }
140 if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
141 if (/^-gccpath/) { $CONFIGUREARGS .= " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++"; shift; next;}
142 if (/^-cvstag/) { $CVSCOOPT .= " -r $ARGV[0]"; shift; next; } else{ $CVSCOOPT="";}
143 if (/^-target/) {
144 $CONFIGUREARGS .= " --target=$ARGV[0]"; shift; next;
145 }
146 if (/^-cflags/) {
147 $MAKEOPTS = "$MAKEOPTS C.Flags=\'$ARGV[0]\'"; shift; next;
148 }
149 if (/^-cxxflags/) {
150 $MAKEOPTS = "$MAKEOPTS CXX.Flags=\'$ARGV[0]\'"; shift; next;
151 }
152 if (/^-ldflags/) {
153 $MAKEOPTS = "$MAKEOPTS LD.Flags=\'$ARGV[0]\'"; shift; next;
154 }
155 if (/^-compileflags/) {
156 $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next;
157 }
158 if (/^-extraflags/) {
159 $PROGTESTOPTS .= " EXTRA_FLAGS=\'$ARGV[0]\'"; shift; next;
160 }
161 if (/^-noexternals$/) { $NOEXTERNALS = 1; next; }
162 if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; }
163 if (/^-nobuild$/) { $NOBUILD = 1; next; }
164 if (/^-spec2000path$/) {
165 $LLVMTESTCONFIGARGS .= " --enable-spec2000=$ARGV[0]"; shift; next;
166 } else{ $LLVMTESTCONFIGARGS=""; }
167 if (/^-spec95path$/) {
168 $LLVMTESTCONFIGARGS .= " --enable-spec95=$ARGV[0]"; shift; next;
169 }
170 if (/^-povraypath$/) {
171 $LLVMTESTCONFIGARGS .= " --enable-povray=$ARGV[0]"; shift; next;
172 }
173 if (/^-namdpath$/) {
174 $LLVMTESTCONFIGARGS .= " --enable-namd=$ARGV[0]"; shift; next;
175 }
176 print "Unknown option: $_ : ignoring!\n";
177}
178
179if ($ENV{'LLVMGCCDIR'}) {
180 $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
181}
182if ($CONFIGUREARGS !~ /--disable-jit/) {
183 $CONFIGUREARGS .= " --enable-jit";
184}
185
186die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
187
188if (@ARGV == 3) {
189 $CVSRootDir = $ARGV[0];
190 $BuildDir = $ARGV[1];
191 $WebDir = $ARGV[2];
192}
193
194##############################################################
195#
196#define the file names we'll use
197#
198##############################################################
199my $Prefix = "$WebDir/$DATE";
200my $BuildLog = "$Prefix-Build-Log.txt";
201my $CVSLog = "$Prefix-CVS-Log.txt";
202my $OldenTestsLog = "$Prefix-Olden-tests.txt";
203my $SingleSourceLog = "$Prefix-SingleSource-ProgramTest.txt.gz";
204my $MultiSourceLog = "$Prefix-MultiSource-ProgramTest.txt.gz";
205my $ExternalLog = "$Prefix-External-ProgramTest.txt.gz";
206my $DejagnuLog = "$Prefix-Dejagnu-testrun.log";
207my $DejagnuSum = "$Prefix-Dejagnu-testrun.sum";
208my $DejagnuTestsLog = "$Prefix-DejagnuTests-Log.txt";
209if (! -d $WebDir) {
210 mkdir $WebDir, 0777;
211 warn "$WebDir did not exist; creating it.\n";
212}
213
214if ($VERBOSE) {
215 print "INITIALIZED\n";
216 print "CVS Root = $CVSRootDir\n";
217 print "BuildDir = $BuildDir\n";
218 print "WebDir = $WebDir\n";
219 print "Prefix = $Prefix\n";
220 print "CVSLog = $CVSLog\n";
221 print "BuildLog = $BuildLog\n";
222}
223
224##############################################################
225#
226# Helper functions
227#
228##############################################################
229sub GetDir {
230 my $Suffix = shift;
231 opendir DH, $WebDir;
232 my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
233 closedir DH;
234 return @Result;
235}
236
237#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
238#
239# DiffFiles - Diff the current version of the file against the last version of
240# the file, reporting things added and removed. This is used to report, for
241# example, added and removed warnings. This returns a pair (added, removed)
242#
243#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
244sub DiffFiles {
245 my $Suffix = shift;
246 my @Others = GetDir $Suffix;
247 if (@Others == 0) { # No other files? We added all entries...
248 return (`cat $WebDir/$DATE$Suffix`, "");
249 }
250 # Diff the files now...
251 my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
252 my $Added = join "\n", grep /^</, @Diffs;
253 my $Removed = join "\n", grep /^>/, @Diffs;
254 $Added =~ s/^< //gm;
255 $Removed =~ s/^> //gm;
256 return ($Added, $Removed);
257}
258
259#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
260#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
261sub GetRegex { # (Regex with ()'s, value)
262 $_[1] =~ /$_[0]/m;
263 if (defined($1)) {
264 return $1;
265 }
266 return "0";
267}
268
269#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
270#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
271sub GetRegexNum {
272 my ($Regex, $Num, $Regex2, $File) = @_;
273 my @Items = split "\n", `grep '$Regex' $File`;
274 return GetRegex $Regex2, $Items[$Num];
275}
276
277#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
278#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
279sub ChangeDir { # directory, logical name
280 my ($dir,$name) = @_;
281 chomp($dir);
282 if ( $VERBOSE ) { print "Changing To: $name ($dir)\n"; }
283 chdir($dir) || die "Cannot change directory to: $name ($dir) ";
284}
285
286#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
287#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
288sub ReadFile {
289 if (open (FILE, $_[0])) {
290 undef $/;
291 my $Ret = <FILE>;
292 close FILE;
293 $/ = '\n';
294 return $Ret;
295 } else {
296 print "Could not open file '$_[0]' for reading!";
297 return "";
298 }
299}
300
301#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
302#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
303sub WriteFile { # (filename, contents)
304 open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!";
305 print FILE $_[1];
306 close FILE;
307}
308
309#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
310#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
311sub CopyFile { #filename, newfile
312 my ($file, $newfile) = @_;
313 chomp($file);
314 if ($VERBOSE) { print "Copying $file to $newfile\n"; }
315 copy($file, $newfile);
316}
317
318#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
319#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
320sub AddRecord {
321 my ($Val, $Filename,$WebDir) = @_;
322 my @Records;
323 if (open FILE, "$WebDir/$Filename") {
324 @Records = grep !/$DATE/, split "\n", <FILE>;
325 close FILE;
326 }
327 push @Records, "$DATE: $Val";
328 WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
329}
330
331#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
332#
333# FormatTime - Convert a time from 1m23.45 into 83.45
334#
335#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
336sub FormatTime {
337 my $Time = shift;
338 if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
339 $Time = sprintf("%7.4f", $1*60.0+$2);
340 }
341 return $Time;
342}
343
344#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
345#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
346sub GetDejagnuTestResults { # (filename, log)
347 my ($filename, $DejagnuLog) = @_;
348 my @lines;
349 my $firstline;
350 $/ = "\n"; #Make sure we're going line at a time.
351
352 print "DEJAGNU TEST RESULTS:\n";
353
354 if (open SRCHFILE, $filename) {
355 # Process test results
356 my $first_list = 1;
357 my $should_break = 1;
358 my $nocopy = 0;
359 my $readingsum = 0;
360 while ( <SRCHFILE> ) {
361 if ( length($_) > 1 ) {
362 chomp($_);
363 if ( m/^XPASS:/ || m/^FAIL:/ ) {
364 $nocopy = 0;
365 if ( $first_list ) {
366 push(@lines, "UNEXPECTED TEST RESULTS\n");
367 $first_list = 0;
368 $should_break = 1;
369 push(@lines, "$_\n");
370 print " $_\n";
371 } else {
372 push(@lines, "$_\n");
373 print " $_\n";
374 }
375 } #elsif ( m/Summary/ ) {
376 # if ( $first_list ) {
377 # push(@lines, "PERFECT!");
378 # print " PERFECT!\n";
379 # } else {
380 # push(@lines, "</li></ol>\n");
381 # }
382 # push(@lines, "STATISTICS\n");
383 # print "\nDEJAGNU STATISTICS:\n";
384 # $should_break = 0;
385 # $nocopy = 0;
386 # $readingsum = 1;
387 #}
388 elsif ( $readingsum ) {
389 push(@lines,"$_\n");
390 print " $_\n";
391 }
392
393 }
394 }
395 }
396 close SRCHFILE;
397
398 my $content = join("", @lines);
399 return $content;
400}
401
402
403#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
404#
405# This function acts as a mini web browswer submitting data
406# to our central server via the post method
407#
408#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
409sub SendData{
410 $host = $_[0];
411 $file = $_[1];
412 $variables=$_[2];
413
414 $port=80;
415 $socketaddr= sockaddr_in $port, inet_aton $host or die "Bad hostname\n";
416 socket SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp') or die "Bad socket\n";
417 connect SOCK, $socketaddr or die "Bad connection\n";
418 select((select(SOCK), $| = 1)[0]);
419
420 #creating content here
421 my $content;
422 foreach $key (keys (%$variables)){
423 $value = $variables->{$key};
424 $value =~ s/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg;
425 $content .= "$key=$value&";
426 }
427
428 $length = length($content);
429
430 my $send= "POST $file HTTP/1.0\n";
431 $send.= "Content-Type: application/x-www-form-urlencoded\n";
432 $send.= "Content-length: $length\n\n";
433 $send.= "$content";
434
435 print SOCK $send;
436 my $result;
437 while(<SOCK>){
438 $result .= $_;
439 }
440 close(SOCK);
441
442 my $sentdata="";
443 foreach $x(keys(%hash_of_data)){
444 $senddata.= "$x => $hash_of_data{$x}\n";
445 }
446 WriteFile "$Prefix-sentdata.txt", $sentdata;
447
448
449 return $result;
450}
451
452
453##############################################################
454#
455# Create the CVS repository directory
456#
457##############################################################
458if (!$NOCHECKOUT) {
459 if (-d $BuildDir) {
460 if (!$NOREMOVE) {
461 system "rm -rf $BuildDir";
462 } else {
463 die "CVS checkout directory $BuildDir already exists!";
464 }
465 }
466 mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
467}
468ChangeDir( $BuildDir, "CVS checkout directory" );
469
470
471##############################################################
472#
473# Check out the llvm tree, saving CVS messages to the cvs log...
474#
475##############################################################
476my $CVSOPT = "";
477# Use compression if going over ssh.
478$CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/;
479my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co $CVSCOOPT";
480if (!$NOCHECKOUT) {
481 if ( $VERBOSE )
482 {
483 print "CHECKOUT STAGE:\n";
484 print "( time -p $CVSCMD llvm; cd llvm/projects ; $CVSCMD llvm-test ) > $CVSLog 2>&1\n";
485 }
486 system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
487 "$CVSCMD llvm-test ) > $CVSLog 2>&1";
488 ChangeDir( $BuildDir , "CVS Checkout directory") ;
489}
490ChangeDir( "llvm" , "llvm source directory") ;
491if (!$NOCHECKOUT) {
492 if ( $VERBOSE ) { print "UPDATE STAGE\n"; }
493 system "$NICE cvs update -PdRA >> $CVSLog 2>&1" ;
494}
495
496##############################################################
497#
498# Get some static statistics about the current state of CVS
499#
500# This can probably be put on the server side
501#
502##############################################################
503my $CVSCheckoutTime_Wall = GetRegex "([0-9.]+)", `grep '^real' $CVSLog`;
504my $CVSCheckoutTime_User = GetRegex "([0-9.]+)", `grep '^user' $CVSLog`;
505my $CVSCheckoutTime_Sys = GetRegex "([0-9.]+)", `grep '^sys' $CVSLog`;
506my $CVSCheckoutTime_CPU = $CVSCheckoutTime_User + $CVSCheckoutTime_Sys;
507
508my $NumFilesInCVS = `egrep '^U' $CVSLog | wc -l` + 0;
509my $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $CVSLog | wc -l` + 0;
510my $LOC = `utils/countloc.sh`;
511
512##############################################################
513#
514# Extract some information from the CVS history... use a hash so no duplicate
515# stuff is stored. This gets the history from the previous days worth
516# of cvs activit and parses it.
517#
518##############################################################
519
520my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
521
522if(!$NOCVSSTATS){
523
524if ($VERBOSE) { print "CVS HISTORY ANALYSIS STAGE\n"; }
525@CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
526#print join "\n", @CVSHistory; print "\n";
527
528my $DateRE = '[-/:0-9 ]+\+[0-9]+';
529
530# Loop over every record from the CVS history, filling in the hashes.
531foreach $File (@CVSHistory) {
532 my ($Type, $Date, $UID, $Rev, $Filename);
533 if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
534 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
535 } elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
536 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
537 } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
538 ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
539 } else {
540 print "UNMATCHABLE: $File\n";
541 next;
542 }
543 # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
544
545 if ($Filename =~ /^llvm/) {
546 if ($Type eq 'M') { # Modified
547 $ModifiedFiles{$Filename} = 1;
548 $UsersCommitted{$UID} = 1;
549 } elsif ($Type eq 'A') { # Added
550 $Addediles{$Filename} = 1;
551 $UsersCommitted{$UID} = 1;
552 } elsif ($Type eq 'R') { # Removed
553 $RemovedFiles{$Filename} = 1;
554 $UsersCommitted{$UID} = 1;
555 } else {
556 $UsersUpdated{$UID} = 1;
557 }
558 }
559}
560
561my $TestError = 1;
562
563}#!NOCVSSTATS
564
565my $CVSAddedFiles = join "\n", sort keys %AddedFiles;
566my $CVSModifiedFiles = join "\n", sort keys %ModifiedFiles;
567my $CVSRemovedFiles = join "\n", sort keys %RemovedFiles;
568my $UserCommitList = join "\n", sort keys %UsersCommitted;
569my $UserUpdateList = join "\n", sort keys %UsersUpdated;
570
571##############################################################
572#
573# Build the entire tree, saving build messages to the build log
574#
575##############################################################
576if (!$NOCHECKOUT && !$NOBUILD) {
577 my $EXTRAFLAGS = "--enable-spec --with-objroot=.$LLVMTESTCONFIGARGS";
578 if ( $VERBOSE )
579 {
580 print "CONFIGURE STAGE:\n";
581 print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1\n";
582 }
583 system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) > $BuildLog 2>&1";
584 if ( $VERBOSE )
585 {
586 print "BUILD STAGE:\n";
587 print "(time -p $NICE make $MAKEOPTS) >> $BuildLog 2>&1\n";
588 }
589 # Build the entire tree, capturing the output into $BuildLog
590 system "(time -p $NICE make $MAKEOPTS) >> $BuildLog 2>&1";
591}
592
593
594##############################################################
595#
596# Get some statistics about the build...
597#
598##############################################################
599#this can de done on server
600#my @Linked = split '\n', `grep Linking $BuildLog`;
601#my $NumExecutables = scalar(grep(/executable/, @Linked));
602#my $NumLibraries = scalar(grep(!/executable/, @Linked));
603#my $NumObjects = `grep ']\: Compiling ' $BuildLog | wc -l` + 0;
604
605
606my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
607my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$BuildLog";
608my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
609my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$BuildLog";
610
611$ConfigTime=-1 unless $ConfigTime;
612$ConfigWallTime=-1 unless $ConfigWallTime;
613
614my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$BuildLog";
615my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$BuildLog";
616my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
617my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$BuildLog";
618
619$BuildTime=-1 unless $BuildTime;
620$BuildWallTime=-1 unless $BuildWallTime;
621
622my $BuildError = 0, $BuildStatus = "OK";
623if($NOBUILD){
624 $BuildStatus = "Skipped by user";
625 $BuildError = 1;
626}
627elsif (`grep '^make[^:]*: .*Error' $BuildLog | wc -l` + 0 ||
628 `grep '^make: \*\*\*.*Stop.' $BuildLog | wc -l`+0) {
629 $BuildStatus = "Error: compilation aborted";
630 $BuildError = 1;
631 print "\n***ERROR BUILDING TREE\n\n";
632}
633if ($BuildError) { $NODEJAGNU=1; }
634
635##############################################################
636#
637# Running dejagnu tests
638#
639##############################################################
640my $DejangnuTestResults; # String containing the results of the dejagnu
641my $dejagnu_output = "$DejagnuTestsLog";
642if(!$NODEJAGNU) {
643 if($VERBOSE)
644 {
645 print "DEJAGNU FEATURE/REGRESSION TEST STAGE:\n";
646 print "(time -p make $MAKEOPTS check) > $dejagnu_output 2>&1\n";
647 }
648
649 #Run the feature and regression tests, results are put into testrun.sum
650 #Full log in testrun.log
651 system "(time -p make $MAKEOPTS check) > $dejagnu_output 2>&1";
652
653 #Copy the testrun.log and testrun.sum to our webdir
654 CopyFile("test/testrun.log", $DejagnuLog);
655 CopyFile("test/testrun.sum", $DejagnuSum);
656 #can be done on server
657 $DejagnuTestResults = GetDejagnuTestResults($DejagnuSum, $DejagnuLog);
658 $unexpfail_tests = $DejagnuTestResults;
659}
660#Extract time of dejagnu tests
661my $DejagnuTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$dejagnu_output";
662my $DejagnuTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$dejagnu_output";
663$DejagnuTime = $DejagnuTimeU+$DejagnuTimeS; # DejagnuTime = User+System
664$DejagnuWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$dejagnu_output";
665$DejagnuTestResults = "Dejagnu skipped by user choice." unless $DejagnuTestResults;
666$DejagnuTime = "0.0" unless $DejagnuTime;
667$DejagnuWallTime = "0.0" unless $DejagnuWallTime;
668
669if ($DEBUG) {
670 print $DejagnuTestResults;
671}
672
673##############################################################
674#
675# Get warnings from the build
676#
677##############################################################
678if(!$NODEJAGNU){
679
680if ( $VERBOSE ) { print "BUILD INFORMATION COLLECTION STAGE\n"; }
681my @Warn = split "\n", `egrep 'warning:|Entering dir' $BuildLog`;
682my @Warnings;
683my $CurDir = "";
684
685foreach $Warning (@Warn) {
686 if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
687 $CurDir = $1; # Keep track of directory warning is in...
688 if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { # Remove buildir prefix if included
689 $CurDir = $1;
690 }
691 } else {
692 push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
693 }
694}
695my $WarningsFile = join "\n", @Warnings;
696$WarningsFile =~ s/:[0-9]+:/::/g;
697
698# Emit the warnings file, so we can diff...
699WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
Patrick Jenkinsd0a7c2b2006-07-06 22:32:15 +0000700my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
Patrick Jenkins0e316b42006-07-06 21:19:32 +0000701
702# Output something to stdout if something has changed
703#print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
704#print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
705
706#my @TmpWarningsAdded = split "\n", $WarningsAdded; ~PJ on upgrade
707#my @TmpWarningsRemoved = split "\n", $WarningsRemoved; ~PJ on upgrade
708
709} #endif !NODEGAGNU
710
711##############################################################
712#
713# If we built the tree successfully, run the nightly programs tests...
714#
715# A set of tests to run is passed in (i.e. "SingleSource" "MultiSource" "External")
716#
717##############################################################
718sub TestDirectory {
719 my $SubDir = shift;
720
721 ChangeDir( "projects/llvm-test/$SubDir", "Programs Test Subdirectory" );
722
723 my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
724 #my $ProgramTestLog = "$Prefix-MultiSource-ProgramTest.txt"; #CHANGE ME!
725
726 # Run the programs tests... creating a report.nightly.csv file
727 if (!$NOTEST) {
728 print "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv "
729 . "TEST=nightly > $ProgramTestLog 2>&1\n";
730 system "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv "
731 . "TEST=nightly > $ProgramTestLog 2>&1";
732 $llcbeta_options=`make print-llcbeta-option`;
733 }
734
735 my $ProgramsTable;
736 if (`grep '^make[^:]: .*Error' $ProgramTestLog | wc -l` + 0){
737 $TestError = 1;
738 $ProgramsTable="Error running test $SubDir\n";
739 print "ERROR TESTING\n";
740 } elsif (`grep '^make[^:]: .*No rule to make target' $ProgramTestLog | wc -l` + 0) {
741 $TestError = 1;
742 $ProgramsTable="Makefile error running tests $SubDir!\n";
743 print "ERROR TESTING\n";
744 } else {
745 $TestError = 0;
746
747 #
748 # Create a list of the tests which were run...
749 #
750 system "egrep 'TEST-(PASS|FAIL)' < $ProgramTestLog "
751 . "| sort > $Prefix-multisourceprogramstable.txt";
752 }
753 $ProgramsTable = ReadFile "report.nightly.csv";
754
755 ChangeDir( "../../..", "Programs Test Parent Directory" );
756 return ($ProgramsTable, $llcbeta_options);
757}
758
759$patrickjenkins=1;
760if(!$patrickjenkins){
761 if ( $VERBOSE ) {
762 print "Modified Multisource Olden test stage\n";
763 }
764 ($MultiSourceProgramsTable, $multisource_llcbeta_options) = TestDirectory("MultiSource/");
765 ChangeDir( "../../..", "Programs Test Parent Directory" );
766
767
768 WriteFile "$WebDir/multisourceprogramstable.txt", $MultiSourceProgramsTable;
769}
770if (!$BuildError && $patrickjenkins) {
771 if ( $VERBOSE ) {
772 print "SingleSource TEST STAGE\n";
773 }
774 ($SingleSourceProgramsTable, $singlesource_llcbeta_options) = TestDirectory("SingleSource");
775 WriteFile "$Prefix-singlesourceprogramstable.txt", $SingleSourceProgramsTable;
776 if ( $VERBOSE ) {
777 print "MultiSource TEST STAGE\n";
778 }
779 ($MultiSourceProgramsTable, $multisource_llcbeta_options) = TestDirectory("MultiSource");
780 WriteFile "$Prefix-multisourceprogramstable.txt", $MultiSourceProgramsTable;
781 if ( ! $NOEXTERNALS ) {
782 if ( $VERBOSE ) {
783 print "External TEST STAGE\n";
784 }
785 ($ExternalProgramsTable, $externalsource_llcbeta_options) = TestDirectory("External");
786 system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
787 " $Prefix-externalprogramstable.txt | sort > $Prefix-Tests.txt";
788 } else {
789 $ExternalProgramsTable = "External TEST STAGE SKIPPED\n";
790 if ( $VERBOSE ) {
791 print "External TEST STAGE SKIPPED\n";
792 }
793 system "cat $Prefix-singlesourceprogramstable.txt $Prefix-multisourceprogramstable.txt ".
794 " | sort > $Prefix-Tests.txt";
795 }
796 WriteFile "$Prefix-externalprogramstable.txt", $ExternalProgramsTable;
797
798}
799
800##############################################################
801#
802#
803# gathering tests added removed broken information here
804#
805#
806##############################################################
807my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
808
809if ($TestError) {
810 $TestsAdded = "<b>error testing</b><br>";
811 $TestsRemoved = "<b>error testing</b><br>";
812 $TestsFixed = "<b>error testing</b><br>";
813 $TestsBroken = "<b>error testing</b><br>";
814} else {
Patrick Jenkinsd0a7c2b2006-07-06 22:32:15 +0000815 my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
Patrick Jenkins0e316b42006-07-06 21:19:32 +0000816
817 my @RawTestsAddedArray = split '\n', $RTestsAdded;
818 my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
819
820 my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
821 @RawTestsRemovedArray;
822 my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
823 @RawTestsAddedArray;
824
825 foreach $Test (keys %NewTests) {
826 if (!exists $OldTests{$Test}) { # TestAdded if in New but not old
827 $TestsAdded = "$TestsAdded$Test\n";
828 } else {
829 if ($OldTests{$Test} =~ /TEST-PASS/) { # Was the old one a pass?
830 $TestsBroken = "$TestsBroken$Test\n"; # New one must be a failure
831 } else {
832 $TestsFixed = "$TestsFixed$Test\n"; # No, new one is a pass.
833 }
834 }
835 }
836 foreach $Test (keys %OldTests) { # TestRemoved if in Old but not New
837 $TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
838 }
839
840 #print "\nTESTS ADDED: \n\n$TestsAdded\n\n" if (length $TestsAdded);
841 #print "\nTESTS REMOVED:\n\n$TestsRemoved\n\n" if (length $TestsRemoved);
842 #print "\nTESTS FIXED: \n\n$TestsFixed\n\n" if (length $TestsFixed);
843 #print "\nTESTS BROKEN: \n\n$TestsBroken\n\n" if (length $TestsBroken);
844
845 #$TestsAdded = AddPreTag $TestsAdded;
846 #$TestsRemoved = AddPreTag $TestsRemoved;
847 #$TestsFixed = AddPreTag $TestsFixed;
848 #$TestsBroken = AddPreTag $TestsBroken;
849}
850
851##############################################################
852#
853# If we built the tree successfully, runs of the Olden suite with
854# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
855#
856##############################################################
857if (!$BuildError) {
858 if ( $VERBOSE ) { print "OLDEN TEST SUITE STAGE\n"; }
859 my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
860 $MachCodeSize) = ("","","","","","","");
861 if (!$NORUNNINGTESTS) {
862 ChangeDir( "$BuildDir/llvm/projects/llvm-test/MultiSource/Benchmarks/Olden",
863 "Olden Test Directory");
864
865 # Clean out previous results...
866 system "$NICE make $MAKEOPTS clean > /dev/null 2>&1";
867
868 # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE and
869 # GET_STABLE_NUMBERS enabled!
870 if( $VERBOSE ) { print "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
871 " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1\n"; }
872 system "make -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv.out TEST=nightly " .
873 " LARGE_PROBLEM_SIZE=1 GET_STABLE_NUMBERS=1 > /dev/null 2>&1";
874 system "cp report.nightly.csv $OldenTestsLog";
875 } #else {
876 #system "gunzip ${OldenTestsLog}.gz";
877 #}
878
879 # Now we know we have $OldenTestsLog as the raw output file. Split
880 # it up into records and read the useful information.
881 #my @Records = split />>> ========= /, ReadFile "$OldenTestsLog";
882 #shift @Records; # Delete the first (garbage) record
883
884 # Loop over all of the records, summarizing them into rows for the running
885 # totals file.
886 #my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock";
887 #foreach $Rec (@Records) {
888 #my $rNATTime = GetRegex 'TEST-RESULT-nat-time: program\s*([.0-9m]+)', $Rec;
889 #my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: program\s*([.0-9m]+)', $Rec;
890 #my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: program\s*([.0-9m]+)', $Rec;
891 #my $rJITTime = GetRegex 'TEST-RESULT-jit-time: program\s*([.0-9m]+)', $Rec;
892 #my $rOptTime = GetRegex "TEST-RESULT-compile: .*$WallTimeRE", $Rec;
893 #my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
894
895 #$NATTime .= " " . FormatTime($rNATTime);
896 #$CBETime .= " " . FormatTime($rCBETime);
897 #$LLCTime .= " " . FormatTime($rLLCTime);
898 #$JITTime .= " " . FormatTime($rJITTime);
899 #$OptTime .= " $rOptTime";
900 #$BytecodeSize .= " $rBytecodeSize";
901 #}
902 #
903 # Now that we have all of the numbers we want, add them to the running totals
904 # files.
905 #AddRecord($NATTime, "running_Olden_nat_time.txt", $WebDir);
906 #AddRecord($CBETime, "running_Olden_cbe_time.txt", $WebDir);
907 #AddRecord($LLCTime, "running_Olden_llc_time.txt", $WebDir);
908 #AddRecord($JITTime, "running_Olden_jit_time.txt", $WebDir);
909 #AddRecord($OptTime, "running_Olden_opt_time.txt", $WebDir);
910 #AddRecord($BytecodeSize, "running_Olden_bytecode.txt", $WebDir);
911}
912
913
914##############################################################
915#
916# Place all the logs neatly into one humungous file
917#
918##############################################################
919
920if ( $VERBOSE ) { print "PREPARING LOGS TO BE SENT TO SERVER\n"; }
921
922$machine_data = "uname: ".`uname -a`.
923 "hardware: ".`uname -m`.
924 "os: ".`uname -sr`.
925 "name: ".`uname -n`.
926 "date: ".`date \"+20%y-%m-%d\"`.
927 "time: ".`date +\"%H:%M:%S\"`;
928
929my @CVS_DATA;
930my $cvs_data;
931@CVS_DATA = ReadFile "$CVSLog";
932$cvs_data = join("\n", @CVS_DATA);
933
934my @BUILD_DATA;
935my $build_data;
936@BUILD_DATA = ReadFile "$BuildLog";
937$build_data = join("\n", @BUILD_DATA);
938
939my @DEJAGNU_LOG;
940my @DEJAGNU_SUM;
941my $dejagnutests_log;
942my $dejagnutests_sum;
943@DEJAGNU_LOG = ReadFile "$DejagnuLog";
944@DEJAGNU_SUM = ReadFile "$DejagnuSum";
945$dejagnutests_log = join("\n", @DEJAGNU_LOG);
946$dejagnutests_sum = join("\n", @DEJAGNU_SUM);
947
948my @DEJAGNULOG_FULL;
949my $dejagnulog_full;
950@DEJAGNULOG_FULL = ReadFile "$DejagnuTestsLog";
951$dejagnulog_full = join("\n", @DEJAGNULOG_FULL);
952
953my $gcc_version_long = `gcc --version`;
954@GCC_VERSION = split "\n", $gcc_version_long;
955my $gcc_version = $GCC_VERSION[0];
956
957##############################################################
958#
959# Send data via a post request
960#
961##############################################################
962
963if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
964
965
966my $host = "llvm.org";
967my $file = "/nightlytest/NightlyTestAccept.cgi";
968my %hash_of_data = ('machine_data' => $machine_data,
969 'build_data' => $build_data,
970 'gcc_version' => $gcc_version,
971 'nickname' => $nickname,
972 'dejagnutime_wall' => $DejagnuWallTime,
973 'dejagnutime_cpu' => $DejagnuTime,
974 'cvscheckouttime_wall' => $CVSCheckoutTime_Wall,
975 'cvscheckouttime_cpu' => $CVSCheckoutTime_CPU,
976 'configtime_wall' => $ConfigWallTime,
977 'configtime_cpu'=> $ConfigTime,
978 'buildtime_wall' => $BuildWallTime,
979 'buildtime_cpu' => $BuildTime,
980 'warnings' => $WarningsFile,
981 'cvsusercommitlist' => $UserCommitList,
982 'cvsuserupdatelist' => $UserUpdateList,
983 'cvsaddedfiles' => $CVSAddedFiles,
984 'cvsmodifiedfiles' => $CVSModifiedFiles,
985 'cvsremovedfiles' => $CVSRemovedFiles,
986 'lines_of_code' => $LOC,
987 'cvs_file_count' => $NumFilesInCVS,
988 'cvs_dir_count' => $NumDirsInCVS,
989 'buildstatus' => $BuildStatus,
990 'singlesource_programstable' => $SingleSourceProgramsTable,
991 'multisource_programstable' => $MultiSourceProgramsTable,
992 'externalsource_programstable' => $ExternalSourceProgramsTable,
993 'llcbeta_options' => $multisource_llcbeta_options,
994 'warnings_removed' => $WarningsRemoved,
995 'warnings_added' => $WarningsAdded,
996 'newly_passing_tests' => $TestsFixed,
997 'newly_failing_tests' => $TestsBroken,
998 'new_tests' => $TestsAdded,
999 'removed_tests' => $TestsRemoved,
1000 'unexpfail_tests' => $unexpfail_tests,
1001 'dejagnutests_log' => $dejagnutests_log,
1002 'dejagnutests_sum' => $dejagnutests_sum);
1003
1004$TESTING = 0;
1005
1006if($TESTING){
1007 print "============================\n";
1008 foreach $x(keys %hash_of_data){
1009 print "$x => $hash_of_data{$x}\n";
1010 }
1011}
1012else{
1013 my $response = SendData $host,$file,\%hash_of_data;
1014 print "============================\n$response";
1015}
1016
1017##############################################################
1018#
1019# Remove the cvs tree...
1020#
1021##############################################################
1022system ( "$NICE rm -rf $BuildDir") if (!$NOCHECKOUT and !$NOREMOVE);
1023
1024