mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 00:27:31 +00:00
NewNightlyTest: Factor out LLVM{Src,Obj,Test} variables.
- They can be overriden on the command line as well. Add -teelogs option, which will also print the various logs on stdout. llvm-svn: 74252
This commit is contained in:
parent
84a8914a4a
commit
01ef7adf31
@ -109,6 +109,13 @@ $BuildDir = "$HOME/buildtest" unless $BuildDir;
|
|||||||
my $WebDir = $ENV{'WEBDIR'};
|
my $WebDir = $ENV{'WEBDIR'};
|
||||||
$WebDir = "$HOME/cvs/testresults-X86" unless $WebDir;
|
$WebDir = "$HOME/cvs/testresults-X86" unless $WebDir;
|
||||||
|
|
||||||
|
my $LLVMSrcDir = $ENV{'LLVMSRCDIR'};
|
||||||
|
$LLVMSrcDir = "$BuildDir/llvm" unless $LLVMSrcDir;
|
||||||
|
my $LLVMObjDir = $ENV{'LLVMOBJDIR'};
|
||||||
|
$LLVMObjDir = "$BuildDir/llvm" unless $LLVMObjDir;
|
||||||
|
my $LLVMTestDir = $ENV{'LLVMTESTDIR'};
|
||||||
|
$LLVMTestDir = "$BuildDir/llvm/projects/llvm-test" unless $LLVMTestDir;
|
||||||
|
|
||||||
##############################################################
|
##############################################################
|
||||||
#
|
#
|
||||||
# Calculate the date prefix...
|
# Calculate the date prefix...
|
||||||
@ -168,6 +175,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
|
|||||||
if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
|
if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
|
||||||
if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
|
if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
|
||||||
if (/^-verbose$/) { $VERBOSE = 1; next; }
|
if (/^-verbose$/) { $VERBOSE = 1; next; }
|
||||||
|
if (/^-teelogs$/) { $TEELOGS = 1; next; }
|
||||||
if (/^-debug$/) { $DEBUG = 1; next; }
|
if (/^-debug$/) { $DEBUG = 1; next; }
|
||||||
if (/^-nice$/) { $NICE = "nice "; next; }
|
if (/^-nice$/) { $NICE = "nice "; next; }
|
||||||
if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
|
if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]";
|
||||||
@ -293,6 +301,26 @@ sub GetDir {
|
|||||||
return @Result;
|
return @Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub RunLoggedCommand {
|
||||||
|
my $Command = shift;
|
||||||
|
my $Log = shift;
|
||||||
|
if ($TEELOGS) {
|
||||||
|
system "$Command 2>&1 | tee $Log";
|
||||||
|
} else {
|
||||||
|
system "$Command 2>&1 > $Log";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sub RunAppendingLoggedCommand {
|
||||||
|
my $Command = shift;
|
||||||
|
my $Log = shift;
|
||||||
|
if ($TEELOGS) {
|
||||||
|
system "$Command 2>&1 | tee -a $Log";
|
||||||
|
} else {
|
||||||
|
system "$Command 2>&1 > $Log";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#
|
#
|
||||||
# DiffFiles - Diff the current version of the file against the last version of
|
# DiffFiles - Diff the current version of the file against the last version of
|
||||||
@ -528,7 +556,6 @@ if (!$NOCHECKOUT) {
|
|||||||
mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
|
mkdir $BuildDir or die "Could not create checkout directory $BuildDir!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ChangeDir( $BuildDir, "checkout directory" );
|
|
||||||
|
|
||||||
|
|
||||||
##############################################################
|
##############################################################
|
||||||
@ -537,6 +564,7 @@ ChangeDir( $BuildDir, "checkout directory" );
|
|||||||
#
|
#
|
||||||
##############################################################
|
##############################################################
|
||||||
if (!$NOCHECKOUT) {
|
if (!$NOCHECKOUT) {
|
||||||
|
ChangeDir( $BuildDir, "checkout directory" );
|
||||||
if ( $VERBOSE ) { print "CHECKOUT STAGE:\n"; }
|
if ( $VERBOSE ) { print "CHECKOUT STAGE:\n"; }
|
||||||
if ($USESVN) {
|
if ($USESVN) {
|
||||||
my $SVNCMD = "$NICE svn co --non-interactive $SVNURL";
|
my $SVNCMD = "$NICE svn co --non-interactive $SVNURL";
|
||||||
@ -545,14 +573,14 @@ if (!$NOCHECKOUT) {
|
|||||||
print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
||||||
"$SVNCMD2/test-suite/trunk llvm-test ) > $COLog 2>&1\n";
|
"$SVNCMD2/test-suite/trunk llvm-test ) > $COLog 2>&1\n";
|
||||||
}
|
}
|
||||||
system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
RunLoggedCommand("( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
|
||||||
"$SVNCMD2/test-suite/trunk llvm-test ) > $COLog 2>&1\n";
|
"$SVNCMD2/test-suite/trunk llvm-test )", $COLog);
|
||||||
if ($WITHCLANG) {
|
if ($WITHCLANG) {
|
||||||
my $SVNCMD = "$NICE svn co --non-interactive $SVNURL/cfe/trunk";
|
my $SVNCMD = "$NICE svn co --non-interactive $SVNURL/cfe/trunk";
|
||||||
if ($VERBOSE) {
|
if ($VERBOSE) {
|
||||||
print "( time -p cd llvm/tools ; $SVNCMD clang ) > $COLog 2>&1\n";
|
print "( time -p cd llvm/tools ; $SVNCMD clang ) > $COLog 2>&1\n";
|
||||||
}
|
}
|
||||||
system "( time -p cd llvm/tools ; $SVNCMD clang ) > $COLog 2>&1\n";
|
RunLoggedCommand("( time -p cd llvm/tools ; $SVNCMD clang )", $COLog);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
my $CVSOPT = "";
|
my $CVSOPT = "";
|
||||||
@ -563,12 +591,11 @@ if (!$NOCHECKOUT) {
|
|||||||
print "( time -p $CVSCMD llvm; cd llvm/projects ; " .
|
print "( time -p $CVSCMD llvm; cd llvm/projects ; " .
|
||||||
"$CVSCMD llvm-test ) > $COLog 2>&1\n";
|
"$CVSCMD llvm-test ) > $COLog 2>&1\n";
|
||||||
}
|
}
|
||||||
system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
|
RunLoggedCommand("( time -p $CVSCMD llvm; cd llvm/projects ; " .
|
||||||
"$CVSCMD llvm-test ) > $COLog 2>&1\n";
|
"$CVSCMD llvm-test )", $COLog);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ChangeDir( $BuildDir , "Checkout directory") ;
|
ChangeDir( $LLVMSrcDir , "llvm source directory") ;
|
||||||
ChangeDir( "llvm" , "llvm source directory") ;
|
|
||||||
|
|
||||||
##############################################################
|
##############################################################
|
||||||
#
|
#
|
||||||
@ -726,16 +753,16 @@ if (!$NOCHECKOUT && !$NOBUILD) {
|
|||||||
print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
|
print "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
|
||||||
"> $BuildLog 2>&1\n";
|
"> $BuildLog 2>&1\n";
|
||||||
}
|
}
|
||||||
system "(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) " .
|
RunLoggedCommand("(time -p $NICE ./configure $CONFIGUREARGS $EXTRAFLAGS) ",
|
||||||
"> $BuildLog 2>&1";
|
$BuildLog);
|
||||||
if ( $VERBOSE ) {
|
if ( $VERBOSE ) {
|
||||||
print "BUILD STAGE:\n";
|
print "BUILD STAGE:\n";
|
||||||
print "(time -p $NICE $MAKECMD clean) >> $BuildLog 2>&1\n";
|
print "(time -p $NICE $MAKECMD clean) >> $BuildLog 2>&1\n";
|
||||||
print "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1\n";
|
print "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1\n";
|
||||||
}
|
}
|
||||||
# Build the entire tree, capturing the output into $BuildLog
|
# Build the entire tree, capturing the output into $BuildLog
|
||||||
system "(time -p $NICE $MAKECMD clean) >> $BuildLog 2>&1";
|
RunAppendingLoggedCommand("(time -p $NICE $MAKECMD clean)", $BuildLog);
|
||||||
system "(time -p $NICE $MAKECMD $MAKEOPTS) >> $BuildLog 2>&1";
|
RunAppendingLoggedCommand("(time -p $NICE $MAKECMD $MAKEOPTS)", $BuildLog);
|
||||||
}
|
}
|
||||||
|
|
||||||
##############################################################
|
##############################################################
|
||||||
@ -751,7 +778,7 @@ if (!$NOCHECKOUT && !$NOBUILD) {
|
|||||||
|
|
||||||
# Get the number of lines of source code. Must be here after the build is done
|
# Get the number of lines of source code. Must be here after the build is done
|
||||||
# because countloc.sh uses the llvm-config script which must be built.
|
# because countloc.sh uses the llvm-config script which must be built.
|
||||||
my $LOC = `utils/countloc.sh -topdir $BuildDir/llvm`;
|
my $LOC = `utils/countloc.sh -topdir $LLVMSrcDir`;
|
||||||
|
|
||||||
# Get the time taken by the configure script
|
# Get the time taken by the configure script
|
||||||
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
|
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$BuildLog";
|
||||||
@ -787,7 +814,7 @@ my $o_file_sizes="";
|
|||||||
if (!$BuildError) {
|
if (!$BuildError) {
|
||||||
print "Organizing size of .o and .a files\n"
|
print "Organizing size of .o and .a files\n"
|
||||||
if ( $VERBOSE );
|
if ( $VERBOSE );
|
||||||
ChangeDir( "$BuildDir/llvm", "Build Directory" );
|
ChangeDir( "$LLVMObjDir", "Build Directory" );
|
||||||
|
|
||||||
my @dirs = ('utils', 'lib', 'tools');
|
my @dirs = ('utils', 'lib', 'tools');
|
||||||
if($BUILDTYPE eq "release"){
|
if($BUILDTYPE eq "release"){
|
||||||
@ -822,7 +849,7 @@ if (!$NODEJAGNU) {
|
|||||||
|
|
||||||
#Run the feature and regression tests, results are put into testrun.sum
|
#Run the feature and regression tests, results are put into testrun.sum
|
||||||
#Full log in testrun.log
|
#Full log in testrun.log
|
||||||
system "(time -p $MAKECMD $MAKEOPTS check) > $dejagnu_output 2>&1";
|
RunLoggedCommand("(time -p $MAKECMD $MAKEOPTS check)", $dejagnu_output);
|
||||||
|
|
||||||
#Copy the testrun.log and testrun.sum to our webdir
|
#Copy the testrun.log and testrun.sum to our webdir
|
||||||
CopyFile("test/testrun.log", $DejagnuLog);
|
CopyFile("test/testrun.log", $DejagnuLog);
|
||||||
@ -857,7 +884,7 @@ if (!$NODEJAGNU) {
|
|||||||
if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
|
if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
|
||||||
$CurDir = $1; # Keep track of directory warning is in...
|
$CurDir = $1; # Keep track of directory warning is in...
|
||||||
# Remove buildir prefix if included
|
# Remove buildir prefix if included
|
||||||
if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { $CurDir = $1; }
|
if ($CurDir =~ m#$LLVMSrcDir/(.*)#) { $CurDir = $1; }
|
||||||
} else {
|
} else {
|
||||||
push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
|
push @Warnings, "$CurDir/$Warning"; # Add directory to warning...
|
||||||
}
|
}
|
||||||
@ -886,9 +913,10 @@ if (!$NODEJAGNU) {
|
|||||||
# "External")
|
# "External")
|
||||||
#
|
#
|
||||||
##############################################################
|
##############################################################
|
||||||
|
|
||||||
sub TestDirectory {
|
sub TestDirectory {
|
||||||
my $SubDir = shift;
|
my $SubDir = shift;
|
||||||
ChangeDir( "$BuildDir/llvm/projects/llvm-test/$SubDir",
|
ChangeDir( "$LLVMTestDir/$SubDir",
|
||||||
"Programs Test Subdirectory" ) || return ("", "");
|
"Programs Test Subdirectory" ) || return ("", "");
|
||||||
|
|
||||||
my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
|
my $ProgramTestLog = "$Prefix-$SubDir-ProgramTest.txt";
|
||||||
@ -899,8 +927,8 @@ sub TestDirectory {
|
|||||||
print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
|
print "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
|
||||||
"TEST=nightly > $ProgramTestLog 2>&1\n";
|
"TEST=nightly > $ProgramTestLog 2>&1\n";
|
||||||
}
|
}
|
||||||
system "$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
|
RunLoggedCommand("$MAKECMD -k $MAKEOPTS $PROGTESTOPTS report.nightly.csv ".
|
||||||
"TEST=nightly > $ProgramTestLog 2>&1";
|
"TEST=nightly", $ProgramTestLog);
|
||||||
$llcbeta_options=`$MAKECMD print-llcbeta-option`;
|
$llcbeta_options=`$MAKECMD print-llcbeta-option`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user