2004-01-07 01:48:26 +00:00
|
|
|
#!/usr/bin/perl -w
|
2003-01-20 06:11:03 +00:00
|
|
|
#
|
|
|
|
# Program: NightlyTest.pl
|
|
|
|
#
|
|
|
|
# Synopsis: Perform a series of tests which are designed to be run nightly.
|
|
|
|
# This is used to keep track of the status of the LLVM tree, tracking
|
|
|
|
# regressions and performance changes. This generates one web page a
|
|
|
|
# day which can be used to access this information.
|
|
|
|
#
|
2003-10-11 05:34:00 +00:00
|
|
|
# Syntax: NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
|
|
|
|
# where
|
|
|
|
# OPTIONS may include one or more of the following:
|
|
|
|
# -nocheckout Do not create, checkout, update, or configure
|
|
|
|
# the source tree.
|
|
|
|
# -noremove Do not remove the BUILDDIR after it has been built.
|
|
|
|
# -notest Do not even attempt to run the test programs. Implies
|
|
|
|
# -norunningtests.
|
|
|
|
# -norunningtests Do not run the Olden benchmark suite with
|
|
|
|
# LARGE_PROBLEM_SIZE enabled.
|
|
|
|
# -parallel Run two parallel jobs with GNU Make.
|
2003-12-19 03:47:31 +00:00
|
|
|
# -enable-linscan Enable linearscan tests
|
|
|
|
#
|
2003-10-11 05:34:00 +00:00
|
|
|
# CVSROOT is the CVS repository from which the tree will be checked out,
|
|
|
|
# specified either in the full :method:user@host:/dir syntax, or
|
|
|
|
# just /dir if using a local repo.
|
|
|
|
# BUILDDIR is the directory where sources for this test run will be checked out
|
|
|
|
# AND objects for this test run will be built. This directory MUST NOT
|
|
|
|
# exist before the script is run; it will be created by the cvs checkout
|
|
|
|
# process and erased (unless -noremove is specified; see above.)
|
|
|
|
# WEBDIR is the directory into which the test results web page will be written,
|
|
|
|
# AND in which the "index.html" is assumed to be a symlink to the most recent
|
|
|
|
# copy of the results. This directory MUST exist before the script is run.
|
2003-01-20 06:11:03 +00:00
|
|
|
#
|
|
|
|
use POSIX qw(strftime);
|
|
|
|
|
2003-10-11 05:34:00 +00:00
|
|
|
my $HOME = $ENV{'HOME'};
|
|
|
|
my $CVSRootDir = $ENV{'CVSROOT'};
|
2003-10-14 01:22:08 +00:00
|
|
|
$CVSRootDir = "/home/vadve/shared/PublicCVS"
|
2003-10-11 05:34:00 +00:00
|
|
|
unless $CVSRootDir;
|
2003-01-20 18:05:27 +00:00
|
|
|
my $BuildDir = "$HOME/buildtest";
|
|
|
|
my $WebDir = "$HOME/cvs/testresults-X86";
|
|
|
|
|
|
|
|
# Calculate the date prefix...
|
|
|
|
@TIME = localtime;
|
|
|
|
my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
|
|
|
|
my $DateString = strftime "%B %d, %Y", localtime;
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
sub ReadFile {
|
2003-08-19 15:08:34 +00:00
|
|
|
undef $/;
|
2003-01-22 16:14:05 +00:00
|
|
|
if (open (FILE, $_[0])) {
|
|
|
|
my $Ret = <FILE>;
|
|
|
|
close FILE;
|
|
|
|
return $Ret;
|
|
|
|
} else {
|
|
|
|
print "Could not open file '$_[0]' for reading!";
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-20 18:05:27 +00:00
|
|
|
sub WriteFile { # (filename, contents)
|
|
|
|
open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!";
|
|
|
|
print FILE $_[1];
|
|
|
|
close FILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub GetRegex { # (Regex with ()'s, value)
|
2003-01-22 20:35:59 +00:00
|
|
|
$_[1] =~ /$_[0]/m;
|
2003-08-19 18:35:03 +00:00
|
|
|
if (defined($1)) {
|
|
|
|
return $1;
|
|
|
|
}
|
|
|
|
return "?";
|
2003-01-20 18:05:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub AddPreTag { # Add pre tags around nonempty list, or convert to "none"
|
|
|
|
$_ = shift;
|
2003-01-20 19:18:44 +00:00
|
|
|
if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; }
|
2003-01-20 18:05:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub GetDir {
|
|
|
|
my $Suffix = shift;
|
|
|
|
opendir DH, $WebDir;
|
|
|
|
my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
|
|
|
|
closedir DH;
|
|
|
|
return @Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
# DiffFiles - Diff the current version of the file against the last version of
|
|
|
|
# the file, reporting things added and removed. This is used to report, for
|
|
|
|
# example, added and removed warnings. This returns a pair (added, removed)
|
|
|
|
#
|
|
|
|
sub DiffFiles {
|
|
|
|
my $Suffix = shift;
|
|
|
|
my @Others = GetDir $Suffix;
|
|
|
|
if (@Others == 0) { # No other files? We added all entries...
|
|
|
|
return (`cat $WebDir/$DATE$Suffix`, "");
|
|
|
|
}
|
|
|
|
# Diff the files now...
|
|
|
|
my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
|
|
|
|
my $Added = join "\n", grep /^</, @Diffs;
|
|
|
|
my $Removed = join "\n", grep /^>/, @Diffs;
|
2003-01-20 19:18:44 +00:00
|
|
|
$Added =~ s/^< //gm;
|
|
|
|
$Removed =~ s/^> //gm;
|
2003-01-20 18:05:27 +00:00
|
|
|
return ($Added, $Removed);
|
|
|
|
}
|
|
|
|
|
2003-08-19 15:08:34 +00:00
|
|
|
# FormatTime - Convert a time from 1m23.45 into 83.45
|
|
|
|
sub FormatTime {
|
|
|
|
my $Time = shift;
|
|
|
|
if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
|
|
|
|
$Time = sprintf("%7.4f", $1*60.0+$2);
|
|
|
|
}
|
|
|
|
return $Time;
|
|
|
|
}
|
|
|
|
|
2003-01-20 18:05:27 +00:00
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
# Command line argument settings...
|
|
|
|
my $NOCHECKOUT = 0;
|
|
|
|
my $NOREMOVE = 0;
|
2003-01-22 16:14:05 +00:00
|
|
|
my $NOTEST = 0;
|
2003-08-19 18:35:03 +00:00
|
|
|
my $NORUNNINGTESTS = 0;
|
2003-01-20 06:11:03 +00:00
|
|
|
my $MAKEOPTS = "";
|
2003-12-19 03:47:31 +00:00
|
|
|
my $ENABLELINEARSCAN = "";
|
2003-10-11 05:34:00 +00:00
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
# Parse arguments...
|
|
|
|
while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
|
|
|
|
shift;
|
|
|
|
last if /^--$/; # Stop processing arguments on --
|
|
|
|
|
|
|
|
# List command line options here...
|
2003-08-19 18:35:03 +00:00
|
|
|
if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
|
|
|
|
if (/^-noremove$/) { $NOREMOVE = 1; next; }
|
|
|
|
if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; }
|
|
|
|
if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
|
|
|
|
if (/^-parallel$/) { $MAKEOPTS = "-j2 -l3.0"; next; }
|
2003-12-19 19:48:43 +00:00
|
|
|
if (/^-enable-linscan$/) { $ENABLELINEARSCAN = "ENABLE_LINEARSCAN=1"; next; }
|
2003-01-20 06:11:03 +00:00
|
|
|
|
|
|
|
print "Unknown option: $_ : ignoring!\n";
|
|
|
|
}
|
|
|
|
|
2003-01-20 18:05:27 +00:00
|
|
|
die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
|
2003-01-20 06:11:03 +00:00
|
|
|
|
|
|
|
if (@ARGV == 3) {
|
|
|
|
$CVSRootDir = $ARGV[0];
|
|
|
|
$BuildDir = $ARGV[1];
|
|
|
|
$WebDir = $ARGV[2];
|
|
|
|
}
|
|
|
|
|
2003-07-07 21:27:40 +00:00
|
|
|
my $Template = "$BuildDir/llvm/utils/NightlyTestTemplate.html";
|
2003-01-20 06:11:03 +00:00
|
|
|
my $Prefix = "$WebDir/$DATE";
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
print "CVS Root = $CVSRootDir\n";
|
|
|
|
print "BuildDir = $BuildDir\n";
|
|
|
|
print "WebDir = $WebDir\n";
|
|
|
|
print "Prefix = $Prefix\n";
|
|
|
|
}
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
|
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Create the CVS repository directory
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
if (!$NOCHECKOUT) {
|
2003-07-07 21:27:40 +00:00
|
|
|
mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
|
2003-01-20 06:11:03 +00:00
|
|
|
}
|
2003-07-07 21:27:40 +00:00
|
|
|
chdir $BuildDir or die "Could not change to CVS checkout directory $BuildDir!";
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
|
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Check out the llvm tree, saving CVS messages to the cvs log...
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-10-11 05:34:00 +00:00
|
|
|
$CVSOPT = "";
|
|
|
|
$CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/; # Use compression if going over ssh.
|
|
|
|
system "(time -p cvs $CVSOPT -d $CVSRootDir co llvm) > $Prefix-CVS-Log.txt 2>&1"
|
2003-01-20 06:11:03 +00:00
|
|
|
if (!$NOCHECKOUT);
|
|
|
|
|
|
|
|
chdir "llvm" or die "Could not change into llvm directory!";
|
|
|
|
|
2003-01-22 20:35:59 +00:00
|
|
|
system "cvs up -P -d > /dev/null 2>&1" if (!$NOCHECKOUT);
|
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
# Read in the HTML template file...
|
2003-01-22 16:14:05 +00:00
|
|
|
my $TemplateContents = ReadFile $Template;
|
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Get some static statistics about the current state of CVS
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
my $CVSCheckoutTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-CVS-Log.txt`;
|
2003-12-01 05:31:12 +00:00
|
|
|
my $NumFilesInCVS = `egrep '^U' $Prefix-CVS-Log.txt | wc -l` + 0;
|
|
|
|
my $NumDirsInCVS = `egrep '^cvs (checkout|server|update):' $Prefix-CVS-Log.txt | wc -l` + 0;
|
2003-01-20 06:11:03 +00:00
|
|
|
$LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Build the entire tree, saving build messages to the build log
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
if (!$NOCHECKOUT) {
|
2003-08-14 15:26:28 +00:00
|
|
|
system "(time -p ./configure --enable-jit --enable-spec --with-objroot=.) > $Prefix-Build-Log.txt 2>&1";
|
2003-01-20 06:11:03 +00:00
|
|
|
|
|
|
|
# Build the entire tree, capturing the output into $Prefix-Build-Log.txt
|
2003-07-01 16:02:00 +00:00
|
|
|
system "(time -p gmake $MAKEOPTS) >> $Prefix-Build-Log.txt 2>&1";
|
2003-01-20 06:11:03 +00:00
|
|
|
}
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-08-18 06:05:21 +00:00
|
|
|
sub GetRegexNum {
|
|
|
|
my ($Regex, $Num, $Regex2, $File) = @_;
|
|
|
|
my @Items = split "\n", `grep '$Regex' $File`;
|
|
|
|
return GetRegex $Regex2, $Items[$Num];
|
|
|
|
}
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Get some statistics about the build...
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
my @Linked = split '\n', `grep Linking $Prefix-Build-Log.txt`;
|
|
|
|
my $NumExecutables = scalar(grep(/executable/, @Linked));
|
|
|
|
my $NumLibraries = scalar(grep(!/executable/, @Linked));
|
|
|
|
my $NumObjects = `grep '^Compiling' $Prefix-Build-Log.txt | wc -l` + 0;
|
2003-08-18 06:05:21 +00:00
|
|
|
|
|
|
|
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
|
|
|
my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
2003-08-18 14:07:03 +00:00
|
|
|
my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
|
2003-08-18 06:05:21 +00:00
|
|
|
my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$Prefix-Build-Log.txt";
|
|
|
|
|
|
|
|
my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
|
|
|
my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
2003-01-22 20:35:59 +00:00
|
|
|
my $BuildTime = $BuildTimeU+$BuildTimeS; # BuildTime = User+System
|
2003-08-18 06:05:21 +00:00
|
|
|
my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt";
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
my $BuildError = "";
|
2003-09-23 20:33:04 +00:00
|
|
|
if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0 ||
|
2003-09-23 22:02:01 +00:00
|
|
|
`grep '^gmake: \*\*\*.*Stop.' $Prefix-Build-Log.txt | wc -l`+0) {
|
2003-08-21 20:22:52 +00:00
|
|
|
$BuildError = "<h3><font color='red'>Build error: compilation " .
|
|
|
|
"<a href=\"$DATE-Build-Log.txt\">aborted</a></font></h3>";
|
2003-10-19 16:54:00 +00:00
|
|
|
print "BUILD ERROR\n";
|
2003-01-22 16:14:05 +00:00
|
|
|
}
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Get warnings from the build
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-07-07 21:27:40 +00:00
|
|
|
my @Warn = split "\n", `egrep 'warning:|Entering dir' $Prefix-Build-Log.txt`;
|
2003-01-20 06:11:03 +00:00
|
|
|
my @Warnings;
|
|
|
|
my $CurDir = "";
|
|
|
|
|
|
|
|
foreach $Warning (@Warn) {
|
|
|
|
if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
|
|
|
|
$CurDir = $1; # Keep track of directory warning is in...
|
2003-08-14 15:26:28 +00:00
|
|
|
if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { # Remove buildir prefix if included
|
2003-01-20 06:11:03 +00:00
|
|
|
$CurDir = $1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
|
|
|
|
}
|
|
|
|
}
|
2003-01-20 19:18:44 +00:00
|
|
|
my $WarningsFile = join "\n", @Warnings;
|
|
|
|
my $WarningsList = AddPreTag $WarningsFile;
|
|
|
|
$WarningsFile =~ s/:[0-9]+:/::/g;
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-01-20 18:05:27 +00:00
|
|
|
# Emit the warnings file, so we can diff...
|
|
|
|
WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
|
|
|
|
my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-10-18 19:31:39 +00:00
|
|
|
# Output something to stdout if something has changed
|
|
|
|
print "ADDED WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
|
|
|
|
print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
|
|
|
|
|
2003-10-19 16:54:00 +00:00
|
|
|
$WarningsAdded = AddPreTag $WarningsAdded;
|
|
|
|
$WarningsRemoved = AddPreTag $WarningsRemoved;
|
2003-01-22 16:14:05 +00:00
|
|
|
|
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Get some statistics about CVS commits over the current day...
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
@CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
|
|
|
|
#print join "\n", @CVSHistory; print "\n";
|
|
|
|
|
|
|
|
# Extract some information from the CVS history... use a hash so no duplicate
|
|
|
|
# stuff is stored.
|
2003-07-07 21:27:40 +00:00
|
|
|
my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-01-22 20:35:59 +00:00
|
|
|
my $DateRE = "[-:0-9 ]+\\+[0-9]+";
|
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
# Loop over every record from the CVS history, filling in the hashes.
|
|
|
|
foreach $File (@CVSHistory) {
|
|
|
|
my ($Type, $Date, $UID, $Rev, $Filename);
|
2003-08-14 15:26:28 +00:00
|
|
|
if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
|
2003-01-20 06:11:03 +00:00
|
|
|
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
|
2004-01-12 16:55:30 +00:00
|
|
|
} elsif ($File =~ /([W]) ($DateRE) ([^ ]+)/) {
|
|
|
|
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "");
|
2003-07-07 21:27:40 +00:00
|
|
|
} elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
|
2003-01-22 20:35:59 +00:00
|
|
|
($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
|
2003-01-20 06:11:03 +00:00
|
|
|
} else {
|
2003-01-22 20:35:59 +00:00
|
|
|
print "UNMATCHABLE: $File\n";
|
|
|
|
}
|
|
|
|
# print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
|
|
|
|
|
|
|
|
if ($Filename =~ /^llvm/) {
|
|
|
|
if ($Type eq 'M') { # Modified
|
|
|
|
$ModifiedFiles{$Filename} = 1;
|
|
|
|
$UsersCommitted{$UID} = 1;
|
|
|
|
} elsif ($Type eq 'A') { # Added
|
|
|
|
$AddedFiles{$Filename} = 1;
|
|
|
|
$UsersCommitted{$UID} = 1;
|
|
|
|
} elsif ($Type eq 'R') { # Removed
|
|
|
|
$RemovedFiles{$Filename} = 1;
|
|
|
|
$UsersCommitted{$UID} = 1;
|
|
|
|
} else {
|
|
|
|
$UsersUpdated{$UID} = 1;
|
|
|
|
}
|
2003-01-20 06:11:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-20 19:18:44 +00:00
|
|
|
my $UserCommitList = join "\n", keys %UsersCommitted;
|
|
|
|
my $UserUpdateList = join "\n", keys %UsersUpdated;
|
2003-08-06 16:02:50 +00:00
|
|
|
my $AddedFilesList = AddPreTag join "\n", sort keys %AddedFiles;
|
|
|
|
my $ModifiedFilesList = AddPreTag join "\n", sort keys %ModifiedFiles;
|
|
|
|
my $RemovedFilesList = AddPreTag join "\n", sort keys %RemovedFiles;
|
2003-01-20 06:11:03 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
my $TestError = 1;
|
2003-08-18 06:05:21 +00:00
|
|
|
my $SingleSourceProgramsTable;
|
|
|
|
my $MultiSourceProgramsTable;
|
2003-08-21 15:55:26 +00:00
|
|
|
my $ExternalProgramsTable;
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-08-18 06:05:21 +00:00
|
|
|
|
|
|
|
sub TestDirectory {
|
|
|
|
my $SubDir = shift;
|
|
|
|
|
|
|
|
chdir "test/Programs/$SubDir" or
|
|
|
|
die "Could not change into test/Programs/$SubDir testdir!";
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
# Run the programs tests... creating a report.nightly.html file
|
|
|
|
if (!$NOTEST) {
|
2003-12-19 03:47:31 +00:00
|
|
|
system "gmake -k $MAKEOPTS $ENABLELINEARSCAN report.nightly.html "
|
|
|
|
. "TEST=nightly > $Prefix-$SubDir-ProgramTest.txt 2>&1";
|
2003-02-28 20:30:20 +00:00
|
|
|
} else {
|
2003-08-18 06:05:21 +00:00
|
|
|
system "gunzip $Prefix-$SubDir-ProgramTest.txt.gz";
|
2003-02-28 20:30:20 +00:00
|
|
|
}
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-08-18 06:05:21 +00:00
|
|
|
my $ProgramsTable;
|
2003-08-20 15:44:33 +00:00
|
|
|
if (`grep '^gmake[^:]: .*Error' $Prefix-$SubDir-ProgramTest.txt | wc -l` + 0){
|
2003-02-28 20:30:20 +00:00
|
|
|
$TestError = 1;
|
2003-05-10 21:40:10 +00:00
|
|
|
$ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
|
2003-10-19 16:54:00 +00:00
|
|
|
print "ERROR TESTING\n";
|
2003-08-20 15:44:33 +00:00
|
|
|
} elsif (`grep '^gmake[^:]: .*No rule to make target' $Prefix-$SubDir-ProgramTest.txt | wc -l` + 0) {
|
2003-05-11 15:23:10 +00:00
|
|
|
$TestError = 1;
|
|
|
|
$ProgramsTable =
|
|
|
|
"<font color=white><h2>Makefile error running tests!</h2></font>";
|
2003-10-19 16:54:00 +00:00
|
|
|
print "ERROR TESTING\n";
|
2003-05-11 15:23:10 +00:00
|
|
|
} else {
|
2003-02-28 20:30:20 +00:00
|
|
|
$TestError = 0;
|
|
|
|
$ProgramsTable = ReadFile "report.nightly.html";
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a list of the tests which were run...
|
|
|
|
#
|
2003-08-18 06:05:21 +00:00
|
|
|
system "egrep 'TEST-(PASS|FAIL)' < $Prefix-$SubDir-ProgramTest.txt "
|
|
|
|
. "| sort > $Prefix-$SubDir-Tests.txt";
|
2003-02-28 20:30:20 +00:00
|
|
|
}
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
# Compress the test output
|
2003-08-18 06:05:21 +00:00
|
|
|
system "gzip -f $Prefix-$SubDir-ProgramTest.txt";
|
|
|
|
chdir "../../.." or die "Cannot return to parent directory!";
|
|
|
|
return $ProgramsTable;
|
|
|
|
}
|
|
|
|
|
2003-08-19 15:08:34 +00:00
|
|
|
# If we build the tree successfully, run the nightly programs tests...
|
2003-08-18 06:05:21 +00:00
|
|
|
if ($BuildError eq "") {
|
|
|
|
$SingleSourceProgramsTable = TestDirectory("SingleSource");
|
|
|
|
$MultiSourceProgramsTable = TestDirectory("MultiSource");
|
2003-08-21 15:55:26 +00:00
|
|
|
$ExternalProgramsTable = TestDirectory("External");
|
2003-08-18 15:11:13 +00:00
|
|
|
system "cat $Prefix-SingleSource-Tests.txt $Prefix-MultiSource-Tests.txt ".
|
2003-08-21 15:55:26 +00:00
|
|
|
" $Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
|
2003-02-28 20:30:20 +00:00
|
|
|
}
|
2003-01-23 19:31:28 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
if ($TestError) {
|
|
|
|
$TestsAdded = "<b>error testing</b><br>";
|
|
|
|
$TestsRemoved = "<b>error testing</b><br>";
|
|
|
|
$TestsFixed = "<b>error testing</b><br>";
|
|
|
|
$TestsBroken = "<b>error testing</b><br>";
|
|
|
|
} else {
|
|
|
|
my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
my @RawTestsAddedArray = split '\n', $RTestsAdded;
|
|
|
|
my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
|
|
|
|
@RawTestsRemovedArray;
|
|
|
|
my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
|
|
|
|
@RawTestsAddedArray;
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
foreach $Test (keys %NewTests) {
|
|
|
|
if (!exists $OldTests{$Test}) { # TestAdded if in New but not old
|
|
|
|
$TestsAdded = "$TestsAdded$Test\n";
|
2003-01-22 20:35:59 +00:00
|
|
|
} else {
|
2003-02-28 20:30:20 +00:00
|
|
|
if ($OldTests{$Test} =~ /TEST-PASS/) { # Was the old one a pass?
|
|
|
|
$TestsBroken = "$TestsBroken$Test\n"; # New one must be a failure
|
|
|
|
} else {
|
|
|
|
$TestsFixed = "$TestsFixed$Test\n"; # No, new one is a pass.
|
|
|
|
}
|
2003-01-22 20:35:59 +00:00
|
|
|
}
|
|
|
|
}
|
2003-02-28 20:30:20 +00:00
|
|
|
foreach $Test (keys %OldTests) { # TestRemoved if in Old but not New
|
|
|
|
$TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
|
|
|
|
}
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-10-21 15:47:31 +00:00
|
|
|
print "\nTESTS ADDED: \n\n$TestsAdded\n\n" if (length $TestsAdded);
|
|
|
|
print "\nTESTS REMOVED:\n\n$TestsRemoved\n\n" if (length $TestsRemoved);
|
|
|
|
print "\nTESTS FIXED: \n\n$TestsFixed\n\n" if (length $TestsFixed);
|
|
|
|
print "\nTESTS BROKEN: \n\n$TestsBroken\n\n" if (length $TestsBroken);
|
2003-10-19 16:54:00 +00:00
|
|
|
|
2003-02-28 20:30:20 +00:00
|
|
|
$TestsAdded = AddPreTag $TestsAdded;
|
|
|
|
$TestsRemoved = AddPreTag $TestsRemoved;
|
|
|
|
$TestsFixed = AddPreTag $TestsFixed;
|
|
|
|
$TestsBroken = AddPreTag $TestsBroken;
|
|
|
|
}
|
2003-01-22 20:35:59 +00:00
|
|
|
|
2003-10-18 19:31:39 +00:00
|
|
|
|
2003-08-19 15:08:34 +00:00
|
|
|
# If we built the tree successfully, runs of the Olden suite with
|
|
|
|
# LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
|
|
|
|
if ($BuildError eq "") {
|
2003-08-19 18:35:03 +00:00
|
|
|
my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
|
2003-08-19 15:08:34 +00:00
|
|
|
$MachCodeSize) = ("","","","","","","");
|
2003-08-19 18:35:03 +00:00
|
|
|
if (!$NORUNNINGTESTS) {
|
2003-09-14 06:00:49 +00:00
|
|
|
chdir "test/Programs/MultiSource/Benchmarks/Olden" or die "Olden tests moved?";
|
2003-08-19 15:08:34 +00:00
|
|
|
|
|
|
|
# Clean out previous results...
|
|
|
|
system "gmake $MAKEOPTS clean > /dev/null 2>&1";
|
|
|
|
|
|
|
|
# Run the nightly test in this directory, with LARGE_PROBLEM_SIZE enabled!
|
2003-10-28 18:37:24 +00:00
|
|
|
system "gmake -k $MAKEOPTS report.nightly.raw.out TEST=nightly " .
|
2003-08-19 15:08:34 +00:00
|
|
|
" LARGE_PROBLEM_SIZE=1 > /dev/null 2>&1";
|
|
|
|
system "cp report.nightly.raw.out $Prefix-Olden-tests.txt";
|
|
|
|
} else {
|
|
|
|
system "gunzip $Prefix-Olden-tests.txt.gz";
|
|
|
|
}
|
|
|
|
|
|
|
|
# Now we know we have $Prefix-Olden-tests.txt as the raw output file. Split
|
|
|
|
# it up into records and read the useful information.
|
2003-08-19 18:35:03 +00:00
|
|
|
my @Records = split />>> ========= /, ReadFile "$Prefix-Olden-tests.txt";
|
2003-08-19 15:08:34 +00:00
|
|
|
shift @Records; # Delete the first (garbage) record
|
|
|
|
|
|
|
|
# Loop over all of the records, summarizing them into rows for the running
|
|
|
|
# totals file.
|
|
|
|
my $WallTimeRE = "[A-Za-z0-9.: ]+\\(([0-9.]+) wall clock";
|
|
|
|
foreach $Rec (@Records) {
|
2003-08-19 18:35:03 +00:00
|
|
|
my $rNATTime = GetRegex 'TEST-RESULT-nat-time: real\s*([.0-9m]+)', $Rec;
|
|
|
|
my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: real\s*([.0-9m]+)', $Rec;
|
|
|
|
my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: real\s*([.0-9m]+)', $Rec;
|
|
|
|
my $rJITTime = GetRegex 'TEST-RESULT-jit-time: real\s*([.0-9m]+)', $Rec;
|
2003-08-19 15:08:34 +00:00
|
|
|
my $rOptTime = GetRegex "TEST-RESULT-compile: $WallTimeRE", $Rec;
|
|
|
|
my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
|
|
|
|
my $rMachCodeSize = GetRegex 'TEST-RESULT-jit-machcode: *([0-9]+).*bytes of machine code', $Rec;
|
|
|
|
|
|
|
|
$NATTime .= " " . FormatTime($rNATTime);
|
|
|
|
$CBETime .= " " . FormatTime($rCBETime);
|
|
|
|
$LLCTime .= " " . FormatTime($rLLCTime);
|
|
|
|
$JITTime .= " " . FormatTime($rJITTime);
|
|
|
|
$OptTime .= " $rOptTime";
|
2003-08-19 18:35:03 +00:00
|
|
|
$BytecodeSize .= " $rBytecodeSize";
|
|
|
|
$MachCodeSize .= " $rMachCodeSize";
|
2003-08-19 15:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Now that we have all of the numbers we want, add them to the running totals
|
|
|
|
# files.
|
2003-08-19 18:35:03 +00:00
|
|
|
AddRecord($NATTime, "running_Olden_nat_time.txt");
|
2003-08-19 15:08:34 +00:00
|
|
|
AddRecord($CBETime, "running_Olden_cbe_time.txt");
|
|
|
|
AddRecord($LLCTime, "running_Olden_llc_time.txt");
|
|
|
|
AddRecord($JITTime, "running_Olden_jit_time.txt");
|
|
|
|
AddRecord($OptTime, "running_Olden_opt_time.txt");
|
|
|
|
AddRecord($BytecodeSize, "running_Olden_bytecode.txt");
|
|
|
|
AddRecord($MachCodeSize, "running_Olden_machcode.txt");
|
2003-08-19 18:35:03 +00:00
|
|
|
|
|
|
|
system "gzip -f $Prefix-Olden-tests.txt";
|
2003-08-19 15:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Get a list of the previous days that we can link to...
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 18:05:27 +00:00
|
|
|
my @PrevDays = map {s/.html//; $_} GetDir ".html";
|
2003-01-20 06:11:03 +00:00
|
|
|
|
|
|
|
splice @PrevDays, 20; # Trim down list to something reasonable...
|
|
|
|
|
|
|
|
my $PrevDaysList = # Format list for sidebar
|
|
|
|
join "\n ", map { "<a href=\"$_.html\">$_</a><br>" } @PrevDays;
|
|
|
|
|
2003-08-18 20:07:54 +00:00
|
|
|
#
|
|
|
|
# Start outputing files into the web directory
|
|
|
|
#
|
|
|
|
chdir $WebDir or die "Could not change into web directory!";
|
|
|
|
|
|
|
|
# Add information to the files which accumulate information for graphs...
|
|
|
|
AddRecord($LOC, "running_loc.txt");
|
|
|
|
AddRecord($BuildTime, "running_build_time.txt");
|
|
|
|
|
|
|
|
#
|
|
|
|
# Rebuild the graphs now...
|
|
|
|
#
|
2003-10-11 05:34:00 +00:00
|
|
|
$GNUPLOT = "/usr/dcs/software/supported/bin/gnuplot";
|
|
|
|
$GNUPLOT = "gnuplot" if ! -x $GNUPLOT;
|
|
|
|
$PlotScriptFilename = "$BuildDir/llvm/utils/NightlyTest.gnuplot";
|
|
|
|
system ($GNUPLOT, $PlotScriptFilename);
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-01-20 06:11:03 +00:00
|
|
|
#
|
|
|
|
# Remove the cvs tree...
|
|
|
|
#
|
|
|
|
system "rm -rf $BuildDir" if (!$NOCHECKOUT and !$NOREMOVE);
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
# Print out information...
|
2003-01-22 16:14:05 +00:00
|
|
|
#
|
2003-01-20 06:11:03 +00:00
|
|
|
if (0) {
|
|
|
|
print "DateString: $DateString\n";
|
|
|
|
print "CVS Checkout: $CVSCheckoutTime seconds\n";
|
|
|
|
print "Files/Dirs/LOC in CVS: $NumFilesInCVS/$NumDirsInCVS/$LOC\n";
|
|
|
|
|
|
|
|
print "Build Time: $BuildTime seconds\n";
|
|
|
|
print "Libraries/Executables/Objects built: $NumLibraries/$NumExecutables/$NumObjects\n";
|
|
|
|
|
|
|
|
print "WARNINGS:\n $WarningsList\n";
|
|
|
|
|
|
|
|
print "Users committed: $UserCommitList\n";
|
|
|
|
print "Added Files: \n $AddedFilesList\n";
|
|
|
|
print "Modified Files: \n $ModifiedFilesList\n";
|
|
|
|
print "Removed Files: \n $RemovedFilesList\n";
|
|
|
|
|
|
|
|
print "Previous Days =\n $PrevDaysList\n";
|
|
|
|
}
|
|
|
|
|
2003-01-22 16:14:05 +00:00
|
|
|
|
2003-01-20 18:05:27 +00:00
|
|
|
#
|
|
|
|
# Output the files...
|
|
|
|
#
|
|
|
|
|
|
|
|
# Main HTML file...
|
2003-01-20 06:11:03 +00:00
|
|
|
my $Output;
|
|
|
|
eval "\$Output = <<ENDOFFILE;$TemplateContents\nENDOFFILE\n";
|
2003-01-20 18:05:27 +00:00
|
|
|
WriteFile "$DATE.html", $Output;
|
2003-01-20 06:11:03 +00:00
|
|
|
|
|
|
|
# Change the index.html symlink...
|
|
|
|
system "ln -sf $DATE.html index.html";
|
|
|
|
|
|
|
|
sub AddRecord {
|
|
|
|
my ($Val, $Filename) = @_;
|
|
|
|
my @Records;
|
2003-08-19 15:08:34 +00:00
|
|
|
if (open FILE, "$WebDir/$Filename") {
|
2003-01-20 06:11:03 +00:00
|
|
|
@Records = grep !/$DATE/, split "\n", <FILE>;
|
|
|
|
close FILE;
|
|
|
|
}
|
|
|
|
push @Records, "$DATE: $Val";
|
2003-08-19 18:35:03 +00:00
|
|
|
WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
|
2003-01-20 06:11:03 +00:00
|
|
|
return @Records;
|
|
|
|
}
|