[zorg] r240184 - Move '--commit, --verbose, --submit' after 'nt' in lnt command line
Tobias Grosser
tobias at grosser.es
Fri Jun 19 15:56:15 PDT 2015
Author: grosser
Date: Fri Jun 19 17:56:15 2015
New Revision: 240184
URL: http://llvm.org/viewvc/llvm-project?rev=240184&view=rev
Log:
Move '--commit, --verbose, --submit' after 'nt' in lnt command line
This addresses the following warning:
main.py:147: warning: --commit should be passed directly to the test
suite.
main.py:147: warning: --verbose should be passed directly to the test
suite.
main.py:147: warning: --submit should be passed directly to the test
suite.
and should also make submissions to two LNT servers work. This is needed
as our primary server is again rather unstable.
Modified:
zorg/trunk/zorg/buildbot/builders/LNTBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/LNTBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LNTBuilder.py?rev=240184&r1=240183&r2=240184&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LNTBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LNTBuilder.py Fri Jun 19 17:56:15 2015
@@ -142,7 +142,8 @@ def AddLNTTestsToFactory(f, nt_flags, cc
# Run the nightly test.
args = [WithProperties('%(builddir)s/lnt.venv/bin/python'),
WithProperties('%(builddir)s/lnt.venv/bin/lnt'),
- 'runtest', '--verbose']
+ 'runtest', 'nt', '--verbose']
+
# Only submit if a URL has been specified
if submitURL is not None:
@@ -153,7 +154,7 @@ def AddLNTTestsToFactory(f, nt_flags, cc
args.extend(['--submit', url])
args.extend(['--commit=1',
- 'nt', '--sandbox', 'nt',
+ '--sandbox', 'nt',
'--no-timestamp',
'--cc', cc_path, '--cxx', cxx_path,
'--without-llvm',
More information about the llvm-commits
mailing list