[Lldb-commits] [PATCH] D116972: [lldb] Run the test suite in verbose mode
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 13 15:30:03 PST 2022
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 Github Zorg
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
===================================================================
--- zorg/buildbot/builders/LLDBBuilder.py
+++ zorg/buildbot/builders/LLDBBuilder.py
@@ -48,11 +48,13 @@
build_cmd=['ninja']
install_cmd = ['ninja','install']
test_cmd = ['ninja','check-lldb']
+ lit_args = '-v'
if jobs:
build_cmd.append(WithProperties("-j%s" % jobs))
install_cmd.append(WithProperties("-j%s" % jobs))
test_cmd.append(WithProperties("-j%s" % jobs))
+ lit_args += " -j%s" % jobs
############# CLEANING
cleanBuildRequested = lambda step: clean or step.build.getProperty("clean", default=step.build.getProperty("clean_obj"))
@@ -67,6 +69,7 @@
cmake_options = [
"-G", "Ninja",
"-DCMAKE_BUILD_TYPE=" + config,
+ "-DLLVM_LIT_ARGS='%s'" % lit_args,
"-DCMAKE_INSTALL_PREFIX=../install",
"-DLLVM_ENABLE_PROJECTS=%s" % ";".join(f.depends_on_projects),
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D116972.399811.patch
Type: text/x-patch
Size: 1000 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220113/4de29791/attachment.bin>
More information about the lldb-commits
mailing list