[PATCH] D17403: Fix the use of -j in "make check-all"

Krzysztof Parzyszek via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 23 06:24:34 PST 2016


kparzysz updated this revision to Diff 48813.
kparzysz marked an inline comment as done.
kparzysz added a comment.

Used "WithProperties" to pass the arguments to the build step.


Repository:
  rL LLVM

http://reviews.llvm.org/D17403

Files:
  zorg/buildbot/builders/LLVMBuilder.py

Index: zorg/buildbot/builders/LLVMBuilder.py
===================================================================
--- zorg/buildbot/builders/LLVMBuilder.py
+++ zorg/buildbot/builders/LLVMBuilder.py
@@ -217,6 +217,7 @@
             LitTestCommand(
                 name            = 'test-llvm',
                 command         = [make, "check-all", "VERBOSE=1",
+                                   WithProperties("-j%s" % jobs),
                                    WithProperties("LIT_ARGS=%s" % litTestArgs)],
                 description     = ["testing", "llvm"],
                 descriptionDone = ["test",    "llvm"],


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17403.48813.patch
Type: text/x-patch
Size: 623 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160223/236d3d60/attachment.bin>


More information about the llvm-commits mailing list