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

Patrick Jenkins pjenkins at apple.com
Fri Aug 11 16:02:23 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.47 -> 1.48
---
Log message:

Added two flags (-submit-server and -submit-script) which allow the user to specify where the test results are submitted too. If these are not specified they default to the LLVM.org server.


---
Diffs of the changes:  (+18 -5)

 NewNightlyTest.pl |   23 ++++++++++++++++++-----
 1 files changed, 18 insertions(+), 5 deletions(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.47 llvm/utils/NewNightlyTest.pl:1.48
--- llvm/utils/NewNightlyTest.pl:1.47	Wed Aug  9 00:45:12 2006
+++ llvm/utils/NewNightlyTest.pl	Fri Aug 11 18:02:09 2006
@@ -52,7 +52,7 @@
 #                   the default.
 #  -compileflags    Next argument specifies extra options passed to make when
 #                   building LLVM.
-#  -use-gmake    		Use gmake instead of the default make command to build
+#  -use-gmake       Use gmake instead of the default make command to build
 #                   llvm and run tests.
 #
 #  ---------------- Options to configure llvm-test ----------------------------
@@ -61,6 +61,14 @@
 #  -noexternals     Do not run the external tests (for cases where povray
 #                   or SPEC are not installed)
 #  -with-externals  Specify a directory where the external tests are located.
+#  -submit-server   Specifies a server to submit the test results too. If this
+#                   option is not specified it defaults to 
+#                   llvm.org. This is basically just the address of the 
+#                   webserver
+#  -submit-script   Specifies which script to call on the submit server. If
+#                   this option is not specified it defaults to
+#                   /nightlytest/NightlyTestAccept.cgi. This is basically 
+#                   everything after the www.yourserver.org.
 #
 # CVSROOT is the CVS repository from which the tree will be checked out,
 #  specified either in the full :method:user at host:/dir syntax, or
@@ -111,6 +119,8 @@
 $NOTEST=0;
 $NORUNNINGTESTS=0;
 $MAKECMD="make";
+$SUBMITSERVER = "llvm.org";
+$SUBMITSCRIPT = "/nightlytest/NightlyTestAccept.cgi";
 
 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
     shift;
@@ -142,6 +152,12 @@
     if (/^-with-externals$/)  {
 	$CONFIGUREARGS .= " --with-externals=$ARGV[0]"; shift; next;
     }
+    if (/^-submit-server/)  {
+	$SUBMITSERVER = "$ARGV[0]"; shift; next;
+    }
+    if (/^-submit-script/)  {
+	$SUBMITSCRIPT = "$ARGV[0]"; shift; next;
+    }
     if (/^-nickname$/)   	{ $nickname = "$ARGV[0]"; shift; next; }
     if (/^-gccpath/)         { $CONFIGUREARGS .= 
     													   " CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++"; 
@@ -996,9 +1012,6 @@
 
 if ( $VERBOSE ) { print "SEND THE DATA VIA THE POST REQUEST\n"; }
 
-
-my $host = "llvm.org";
-my $file = "/nightlytest/NightlyTestAccept.cgi";
 my %hash_of_data = ('machine_data' => $machine_data,
 	'build_data' => $build_data,
 	'gcc_version' => $gcc_version,
@@ -1049,7 +1062,7 @@
     }
 }
 else{
-    my $response = SendData $host,$file,\%hash_of_data;
+    my $response = SendData $SUBMITSERVER,$SUBMITSCRIPT,\%hash_of_data;
     if( $VERBOSE) { print "============================\n$response"; }
 }
 






More information about the llvm-commits mailing list