Skip to content

Commit

Permalink
Disable debuginfo tests for a given blacklist of LLDB versions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwoerister committed Jun 27, 2016
1 parent f019e38 commit 3f3ef4b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mk/tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,13 @@ ifeq ($(findstring msvc,$(CFG_TARGET)),msvc)
CTEST_DISABLE_debuginfo-gdb = "gdb tests are disabled on MSVC"
endif

BLACKLISTED_LLDB_VERSIONS= "lldb-350.0.21.3 \
lldb-350.0.21.9"

ifneq ($(findstring $(CFG_LLDB_VERSION),$(BLACKLISTED_LLDB_VERSIONS)),)
CTEST_DISABLE_debuginfo-lldb = "lldb version '$(CFG_LLDB_VERSION)' has known issues"
endif

# CTEST_DISABLE_NONSELFHOST_$(TEST_GROUP), if set, will cause that
# test group to be disabled *unless* the target is able to build a
# compiler (i.e. when the target triple is in the set of host
Expand Down

0 comments on commit 3f3ef4b

Please sign in to comment.