stella.stamenova added a comment.
Since @omjavaid is working on a related change in
https://reviews.llvm.org/D117363, perhaps he can make the necessary changes
there to support `-j` for the tests?
Repository:
rZORG LLVM Github Zorg
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D11697
gkistanova added inline comments.
Comment at: zorg/buildbot/builders/LLDBBuilder.py:72
"-DCMAKE_BUILD_TYPE=" + config,
+"-DLLVM_LIT_ARGS='%s'" % lit_args,
"-DCMAKE_INSTALL_PREFIX=../install",
To work as expected, this line should be wrap
Hey Galina,
Seems like this didn't take effect until the buildbots got rebooted, which
seems to have happened last night. Apparently my patch broke all the
buildbots because the jobs variable was not what I thought it was...
Anyway, I've removed the offending code
in 4d68a096efc7b5ad0d55cf6422596
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rZORG38ab06456f73: [lldb] Run the test suite in verbose mode
(authored by JDevlieghere).
Herald added a reviewer: gkistanova.
Repository:
rZORG LLVM
JDevlieghere updated this revision to Diff 398837.
JDevlieghere marked 2 inline comments as done.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116972/new/
https://reviews.llvm.org/D116972
Files:
zorg/buildbot/builders/LLDBBuilder.py
Index: zorg/buildbot/builders/LLDBBuilder.py
=
ljmf00 added inline comments.
Comment at: zorg/buildbot/builders/LLDBBuilder.py:50
install_cmd = ['ninja','install']
-test_cmd = ['ninja','check-lldb']
+test_cmd = ['ninja','check-lldb', '-v']
ljmf00 wrote:
> I don't know if ninja verbosity propaga
ljmf00 added inline comments.
Comment at: zorg/buildbot/builders/LLDBBuilder.py:50
install_cmd = ['ninja','install']
-test_cmd = ['ninja','check-lldb']
+test_cmd = ['ninja','check-lldb', '-v']
I don't know if ninja verbosity propagates to `llvm-lit
stella.stamenova accepted this revision.
stella.stamenova added a comment.
This revision is now accepted and ready to land.
LGTM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116972/new/
https://reviews.llvm.org/D116972
___
lldb-commits maili
JDevlieghere created this revision.
JDevlieghere added reviewers: labath, stella.stamenova, omjavaid.
JDevlieghere requested review of this revision.
Run `check-lldb` in verbose mode so that the bot shows which tests are
unsupported.
https://llvm.discourse.group/t/lldb-buildbots-verbosity/5253