[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl NightlyTest.pl

Evan Cheng evan.cheng at apple.com
Tue Aug 29 11:01:32 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.57 -> 1.58
NightlyTest.pl updated: 1.112 -> 1.113
---
Log message:

Issue cvs co with -P option to prune empty directories. Remove the unnecessary
update stage.


---
Diffs of the changes:  (+2 -11)

 NewNightlyTest.pl |    6 +-----
 NightlyTest.pl    |    7 +------
 2 files changed, 2 insertions(+), 11 deletions(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.57 llvm/utils/NewNightlyTest.pl:1.58
--- llvm/utils/NewNightlyTest.pl:1.57	Tue Aug 22 13:11:19 2006
+++ llvm/utils/NewNightlyTest.pl	Tue Aug 29 13:01:18 2006
@@ -488,7 +488,7 @@
 # Use compression if going over ssh.
 $CVSOPT = "-z3" 
   if $CVSRootDir =~ /^:ext:/;
-my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co $CVSCOOPT";
+my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co -P $CVSCOOPT";
 if (!$NOCHECKOUT) {
   if ( $VERBOSE ) { 
     print "CHECKOUT STAGE:\n"; 
@@ -500,10 +500,6 @@
   ChangeDir( $BuildDir , "CVS Checkout directory") ;
 }
 ChangeDir( "llvm" , "llvm source directory") ;
-if (!$NOCHECKOUT) {
-  if ( $VERBOSE ) { print "UPDATE STAGE\n"; }
-  system "$NICE cvs update -PdRA >> $CVSLog 2>&1" ;
-}
 
 ##############################################################
 #


Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.112 llvm/utils/NightlyTest.pl:1.113
--- llvm/utils/NightlyTest.pl:1.112	Wed Jun 28 19:54:37 2006
+++ llvm/utils/NightlyTest.pl	Tue Aug 29 13:01:18 2006
@@ -409,7 +409,7 @@
 my $CVSOPT = "";
 # Use compression if going over ssh.
 $CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/;
-my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co $CVSCOOPT";
+my $CVSCMD = "$NICE cvs $CVSOPT -d $CVSRootDir co -P $CVSCOOPT";
 if (!$NOCHECKOUT) {
   if ( $VERBOSE ) { print "CHECKOUT STAGE\n"; }
   system "( time -p $CVSCMD llvm; cd llvm/projects ; " .
@@ -419,11 +419,6 @@
 
 ChangeDir( "llvm" , "llvm source directory") ;
 
-if (!$NOCHECKOUT) {
-  if ( $VERBOSE ) { print "UPDATE STAGE\n"; }
-  system "$NICE cvs update -PdRA >> $CVSLog 2>&1" ;
-}
-
 if ( $Template eq "" ) {
   $Template = "$BuildDir/llvm/utils/NightlyTestTemplate.html";
 }






More information about the llvm-commits mailing list