Skip to content

Commit 3f3ef4b

Browse files
Disable debuginfo tests for a given blacklist of LLDB versions
1 parent f019e38 commit 3f3ef4b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

mk/tests.mk

+7
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,13 @@ ifeq ($(findstring msvc,$(CFG_TARGET)),msvc)
586586
CTEST_DISABLE_debuginfo-gdb = "gdb tests are disabled on MSVC"
587587
endif
588588

589+
BLACKLISTED_LLDB_VERSIONS= "lldb-350.0.21.3 \
590+
lldb-350.0.21.9"
591+
592+
ifneq ($(findstring $(CFG_LLDB_VERSION),$(BLACKLISTED_LLDB_VERSIONS)),)
593+
CTEST_DISABLE_debuginfo-lldb = "lldb version '$(CFG_LLDB_VERSION)' has known issues"
594+
endif
595+
589596
# CTEST_DISABLE_NONSELFHOST_$(TEST_GROUP), if set, will cause that
590597
# test group to be disabled *unless* the target is able to build a
591598
# compiler (i.e. when the target triple is in the set of host

0 commit comments

Comments
 (0)