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

Galina via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 19 16:12:01 PST 2016


gkistanova added inline comments.

================
Comment at: zorg/buildbot/builders/LLVMBuilder.py:218
@@ -218,4 +217,3 @@
                 name            = 'test-llvm',
-                command         = [make, "check-all", "VERBOSE=1",
-                                   WithProperties("LIT_ARGS=%s" % litTestArgs)],
+                command         = [make, "check-all", "VERBOSE=1", "-j" % jobs],
                 description     = ["testing", "llvm"],
----------------
This wouldn't work as you expect.
You need to use WithProperties similar to all the other places in this file where the jobs param is used.



Repository:
  rL LLVM

http://reviews.llvm.org/D17403





More information about the llvm-commits mailing list