Disable tests on powerpc and powerpcspe
authorVasudev Kamath <vasudev@copyninja.info>
Sun, 25 Feb 2018 06:48:45 +0000 (12:18 +0530)
committerVasudev Kamath <vasudev@copyninja.info>
Sun, 25 Feb 2018 06:48:45 +0000 (12:18 +0530)
debian/rules

index 3d80c433c3ddcdc4844d0faff42667af47b5b1f7..030658590d18d15887877e1db81838043ff87f10 100755 (executable)
@@ -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