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

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Sat Jan 15 10:31:31 PST 2022


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 4d68a096efc7b5ad0d55cf64225962b9ba9ffed9. Would you mind restarting the
buildbots again so that can take effect?

Thanks,
Jonas

On Thu, Jan 13, 2022 at 3:30 PM Jonas Devlieghere via Phabricator via
lldb-commits <lldb-commits at lists.llvm.org> wrote:

> 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),
>          ]
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220115/2ae4dd66/attachment.html>


More information about the lldb-commits mailing list