From bf21400ea9ca736f5e52bd39d7c7894f7e98b85d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 11 Jun 2016 20:23:15 +0000 Subject: [PATCH] only run lldb when doing the code coverage (too many issues otherwise) --- debian/rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/rules b/debian/rules index 6f980f5b..4f029b2d 100755 --- a/debian/rules +++ b/debian/rules @@ -442,8 +442,10 @@ endif # LLDB tests (CMake) ifeq (,$(filter $(DEB_HOST_ARCH), $(LLDB_DISABLE_ARCHS) armhf armel)) +ifneq (,$(filter codecoverage,$(DEB_BUILD_OPTIONS))) LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(CURDIR)/$(TARGET_BUILD)/lib/ $(MAKE) $(NJOBS) -C $(TARGET_BUILD) check-lldb || true endif +endif # Polly tests (CMake) ifeq (${POLLY_ENABLE},yes)