[Lldb-commits] [PATCH] D67075: Pass -DLLDB_DISABLE_CURSES to the lldb-x86_64-debian bot

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 2 05:30:56 PDT 2019


labath created this revision.
labath added reviewers: teemperor, jankratochvil.

Tests which require curses functionality are mysteriously failing on
this bot, even though the bot does have curses installed, and the tests
pass everywhere else.

This patch hard-disables curses functionality on this bot to prevent the
failing tests from being run.


https://reviews.llvm.org/D67075

Files:
  buildbot/osuosl/master/config/builders.py


Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -961,6 +961,7 @@
                     test=True,
                     extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
                                       '-DLLVM_USE_LINKER=gold',
+                                      '-DLLDB_DISABLE_CURSES=True',
                                       '-DCMAKE_C_COMPILER=clang',
                                       '-DCMAKE_CXX_COMPILER=clang++'])},
         {'name': "lldb-x64-windows-ninja",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67075.218338.patch
Type: text/x-patch
Size: 652 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190902/7b4c7f3a/attachment.bin>


More information about the lldb-commits mailing list