diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-04-14 13:53:56 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-04-14 13:53:56 +0000 |
commit | 43fdfdcfd16eeb110920de626928244b2fab1770 (patch) | |
tree | 556500a6238ffba262b07a0af609c90d01d24011 /utils/NightlyTest.pl | |
parent | f3e1b1d716ccff0ccb387802349c5a813f223241 (diff) | |
download | external_llvm-43fdfdcfd16eeb110920de626928244b2fab1770.zip external_llvm-43fdfdcfd16eeb110920de626928244b2fab1770.tar.gz external_llvm-43fdfdcfd16eeb110920de626928244b2fab1770.tar.bz2 |
Allow an option, -with-externals, to be specified that provides the location
of the external tests. This turns into --with-externals option to configure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27700 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NightlyTest.pl')
-rwxr-xr-x | utils/NightlyTest.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index f2a8de0..45ebad9 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -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 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { 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/) { |