[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl
Reid Spencer
reid at x10sys.com
Tue Jun 26 10:09:23 PDT 2007
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.73 -> 1.74
---
Log message:
Update for Subversion conversion:
1. Fix comments for -usesvn and -svnurl options.
2. Fix default URL for SVN access.
3. Fix paths to accommodate "trunk" when checking out from SVN.
---
Diffs of the changes: (+7 -7)
NewNightlyTest.pl | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.73 llvm/utils/NewNightlyTest.pl:1.74
--- llvm/utils/NewNightlyTest.pl:1.73 Mon May 14 13:03:45 2007
+++ llvm/utils/NewNightlyTest.pl Tue Jun 26 12:08:16 2007
@@ -45,10 +45,10 @@
# -gccpath Path to gcc/g++ used to build LLVM
# -cvstag Check out a specific CVS tag to build LLVM (useful for
# testing release branches)
-# -usesvn Check code out from a subversion repository. With no
-# argument, use the standard repository. An argument specifies
-# the repository URL to use.
-# -svnurl Specify the SVN URL where LLVM can be found
+# -usesvn Check code out from a subversion repository.
+# -svnurl Specify the SVN URL where LLVM can be found. Needs -usesvn
+# to be useful. If -svnurl is not used but -usesvn is then
+# the standard (UIUC) repository will be used.
# -target Specify the target triplet
# -cflags Next argument specifies that C compilation options that
# override the default.
@@ -96,7 +96,7 @@
##############################################################
my $HOME = $ENV{'HOME'};
my $SVNURL = $ENV{"SVNURL"};
-$SVNURL = 'svn://anon@hlvm.org:3691/llvm.svn' unless $SVNURL;
+$SVNURL = 'https://llvm.org/svn/llvm-project' unless $SVNURL;
my $CVSRootDir = $ENV{'CVSROOT'};
$CVSRootDir = "/home/vadve/shared/PublicCVS" unless $CVSRootDir;
my $BuildDir = $ENV{'BUILDDIR'};
@@ -520,9 +520,9 @@
if ($USESVN) {
my $SVNCMD = "$NICE svn co $SVNURL";
if ($VERBOSE) {
- print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
+ print "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/trunk/projects ; " .
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
- system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/projects ; " .
+ system "( time -p $SVNCMD/llvm/trunk llvm; cd llvm/trunk/projects ; " .
"$SVNCMD/llvm-test/trunk llvm-test ) > $COLog 2>&1\n";
}
} else {
More information about the llvm-commits
mailing list