[zorg] r308320 - Fix: Invalid value for "--commit": --sandbox is not a valid integer

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 18 08:43:59 PDT 2017


Author: grosser
Date: Tue Jul 18 08:43:59 2017
New Revision: 308320

URL: http://llvm.org/viewvc/llvm-project?rev=308320&view=rev
Log:
Fix: Invalid value for "--commit": --sandbox is not a valid integer

The LNT buildbots started to report the above error a couple of days
ago. It is not really clear what has changed, but I have some hopes
that explicitly splitting the "1" into a separate string might fix this
issue. Let's see if this works or further investigations is needed.

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=308320&r1=308319&r2=308320&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LNTBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LNTBuilder.py Tue Jul 18 08:43:59 2017
@@ -153,7 +153,7 @@ def AddLNTTestsToFactory(f, nt_flags, cc
       for url in submitURL:
         args.extend(['--submit', url])
 
-    args.extend(['--commit=1',
+    args.extend(['--commit', '1',
              '--sandbox', 'nt',
              '--no-timestamp',
              '--cc', cc_path, '--cxx', cxx_path,




More information about the llvm-commits mailing list