From e8ecb7e695925278a287b6ec086cb27577e287aa Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sun, 25 Feb 2018 12:18:45 +0530 Subject: [PATCH] Disable tests on powerpc and powerpcspe --- debian/rules | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/debian/rules b/debian/rules index 3d80c433c..030658590 100755 --- a/debian/rules +++ b/debian/rules @@ -31,6 +31,17 @@ ifeq (0,$(shell test $$(uname -s) = "Linux" -a $$(getconf PAGESIZE) -gt 4096; ec SYSTEM_WORKAROUNDS += ulimit -s $$(expr $$(getconf PAGESIZE) / 1024 '*' 256 + 8192); endif +# Disable tests on powerpc and powerpcspe for now. +# cbmuser requested this and will fix the errors later +# TODO: once powerpc powerpcspe test failures are fixed drop this +ifeq ($(DEB_HOST_ARCH), powerpc) + DEB_BUILD_PROFILES = nocheck +endif + +ifeq ($(DEB_HOST_ARCH), powerpcspe) + DEB_BUILD_PROFILES = nocheck +endif + %: $(SYSTEM_WORKAROUNDS) dh $@ --with bash-completion -- 2.30.2