[LNT] r189533 - Make sure test-externals flag is passed to configure regardless of the without-llvm flag.
Chris Matthews
cmatthews5 at apple.com
Wed Aug 28 16:14:58 PDT 2013
Author: cmatthews
Date: Wed Aug 28 18:14:57 2013
New Revision: 189533
URL: http://llvm.org/viewvc/llvm-project?rev=189533&view=rev
Log:
Make sure test-externals flag is passed to configure regardless of the without-llvm flag.
Modified:
lnt/trunk/lnt/tests/nt.py
Modified: lnt/trunk/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/nt.py?rev=189533&r1=189532&r2=189533&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/nt.py (original)
+++ lnt/trunk/lnt/tests/nt.py Wed Aug 28 18:14:57 2013
@@ -813,8 +813,11 @@ def configure_test_suite(config, iterati
else:
args.extend(['--with-llvmsrc=%s' % config.llvm_src_root,
'--with-llvmobj=%s' % config.llvm_obj_root])
- args.append('--with-externals=%s' % os.path.realpath(
- config.test_suite_externals))
+
+ if config.test_suite_externals:
+ args.append('--with-externals=%s' %
+ os.path.realpath(config.test_suite_externals))
+
print >>configure_log, '%s: running: %s' % (timestamp(),
' '.join('"%s"' % a
for a in args))
More information about the llvm-commits
mailing list