[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-18 Thread Stella Stamenova via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-15 Thread Galina via Phabricator via lldb-commits
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

Re: [Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-15 Thread Jonas Devlieghere via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-13 Thread Jonas Devlieghere via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-10 Thread Jonas Devlieghere via Phabricator via lldb-commits
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 =

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-10 Thread Luís Ferreira via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-10 Thread Luís Ferreira via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-10 Thread Stella Stamenova via Phabricator via lldb-commits
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

[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode

2022-01-10 Thread Jonas Devlieghere via Phabricator via lldb-commits
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