[zorg] r370787 - Pass -DLLDB_DISABLE_CURSES to the lldb-x86_64-debian bot
Pavel Labath via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 3 10:14:38 PDT 2019
Author: labath
Date: Tue Sep 3 10:14:38 2019
New Revision: 370787
URL: http://llvm.org/viewvc/llvm-project?rev=370787&view=rev
Log:
Pass -DLLDB_DISABLE_CURSES to the lldb-x86_64-debian bot
Summary:
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.
Reviewers: teemperor, jankratochvil
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D67075
Modified:
zorg/trunk/buildbot/osuosl/master/config/builders.py
Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=370787&r1=370786&r2=370787&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Tue Sep 3 10:14:38 2019
@@ -821,6 +821,7 @@ def _get_lldb_builders():
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-aarch64-ubuntu",
More information about the llvm-commits
mailing list