Codebase list gpsbabel / 9b6d1d3
Update arch list that ignore test result Jochen Sprickerhof 3 years ago
1 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
2828 $(MAKE) doc
2929 $(MAKE) gpsbabel.html
3030
31 # Ignore broken unit tests on other architectures
31 # Ignore broken unit tests on some architectures
3232 override_dh_auto_test:
33 ifneq (,$(filter $(DEB_BUILD_ARCH),amd64 armel armhf i386 mips64el mipsel m68k sh4))
33 ifeq (,$(filter $(DEB_BUILD_ARCH),i386 s390x sparc64))
34 dh_auto_test || true
35 else
3436 dh_auto_test
35 else
36 dh_auto_test || true
3737 endif