From: Vasudev Kamath Date: Sun, 25 Feb 2018 06:48:45 +0000 (+0530) Subject: Disable tests on powerpc and powerpcspe X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~86 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e8ecb7e695925278a287b6ec086cb27577e287aa;p=cargo.git Disable tests on powerpc and powerpcspe --- 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