diff options
author | Romain Francoise <rfrancoise@debian.org> | 2014-10-22 21:07:39 +0200 |
---|---|---|
committer | Romain Francoise <rfrancoise@debian.org> | 2014-10-22 21:07:39 +0200 |
commit | 55396a83a57ee176a000ed10205338754157b0a8 (patch) | |
tree | bc66f9e49f8b5e8e03a9fa643cda339457e3f318 /debian/rules | |
parent | 93c3765c4b465be0b3242afd1f8dfb5d3599b08e (diff) | |
download | vyos-strongswan-55396a83a57ee176a000ed10205338754157b0a8.tar.gz vyos-strongswan-55396a83a57ee176a000ed10205338754157b0a8.zip |
Run the test suite only on amd64, i386, and s390x
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/debian/rules b/debian/rules index 3fa0d2658..9d25beae0 100755 --- a/debian/rules +++ b/debian/rules @@ -33,17 +33,7 @@ CONFIGUREARGS := --libdir=/usr/lib --libexecdir=/usr/lib \ # get the various DEB_BUILD/DEB_HOST variables include /usr/share/dpkg/architecture.mk -# use reduced keylength in testsuite for !linux and !x86 -ifneq ($(DEB_BUILD_ARCH_OS),linux) - export TESTS_REDUCED_KEYLENGTHS=true -endif -ifneq ($(DEB_BUILD_ARCH_CPU),i386) -ifneq ($(DEB_BUILD_ARCH_CPU),amd64) - export TESTS_REDUCED_KEYLENGTHS=true -endif -endif - -# the padlock plugin only makes sense on i386 +# the padlock plugin only makes sense on i386 # RdRand only makes sense on i386 and amd64 ifeq ($(DEB_BUILD_ARCH_CPU),i386) CONFIGUREARGS += --enable-padlock --enable-rdrand @@ -198,5 +188,15 @@ override_dh_makeshlibs: override_dh_installlogcheck: dh_installlogcheck --name strongswan +override_dh_auto_test: +# run the test suite only on fast archs, but try to get some portability +# coverage by running on: +# - amd64 (64-bit, little-endian) +# - i386 (32-bit, little-endian) +# - s390x (64-bit, big-endian) +ifneq (,$(filter amd64 i386 s390x,$(DEB_BUILD_ARCH))) + dh_auto_test +endif + %: dh $@ --parallel --with autoreconf,systemd |