[llvm-commits] CVS: llvm/utils/NightlyTest.pl
Reid Spencer
reid at x10sys.com
Fri Apr 14 06:54:19 PDT 2006
Changes in directory llvm/utils:
NightlyTest.pl updated: 1.106 -> 1.107
---
Log message:
Allow an option, -with-externals, to be specified that provides the location
of the external tests. This turns into --with-externals option to configure.
---
Diffs of the changes: (+4 -0)
NightlyTest.pl | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.106 llvm/utils/NightlyTest.pl:1.107
--- llvm/utils/NightlyTest.pl:1.106 Mon Mar 20 19:21:39 2006
+++ llvm/utils/NightlyTest.pl Fri Apr 14 08:53:56 2006
@@ -19,6 +19,7 @@
# LARGE_PROBLEM_SIZE enabled.
# -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.
# -nodejagnu Do not run feature or regression tests
# -parallel Run two parallel jobs with GNU Make.
# -release Build an LLVM Release version
@@ -310,6 +311,9 @@
if (/^-f2c$/) {
$CONFIGUREARGS .= " --with-f2c=$ARGV[0]"; shift; next;
}
+ if (/^-with-externals/) {
+ $CONFIGUREARGS .= "--with-externals=$ARGV[0]"; shift; next
+ }
if (/^-gnuplotscript$/) { $PlotScriptFilename = $ARGV[0]; shift; next; }
if (/^-templatefile$/) { $Template = $ARGV[0]; shift; next; }
if (/^-gccpath/) {
More information about the llvm-commits
mailing list