diff options
author | Russ Allbery <rra@dropbox.com> | 2015-08-18 09:57:49 -0700 |
---|---|---|
committer | Russ Allbery <rra@dropbox.com> | 2015-08-18 09:57:49 -0700 |
commit | 294d46a917b6aa3af305c3d50b8d83a1f3fb5694 (patch) | |
tree | 1ea0297f5e54a8fdc72c62cf5ca8476997166510 | |
parent | 52c058d4b2341c677410c54400bb3b554266f020 (diff) |
Disable the strictness test of the Perl modules
* Disable the strictness test on the Perl libraries, since we don't have
all the dependencies to install.
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 76ef8bf..743b5df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ wallet (1.2-1~ebp12.04+1) precise; urgency=medium precise for the functionality wallet needs. * Add explicit build dependency on libjson-perl, which wasn't part of Perl core yet in precise. + * Disable the strictness test on the Perl libraries, since we don't have + all the dependencies to install. -- Russ Allbery <rra@debian.org> Tue, 18 Aug 2015 09:41:24 -0700 diff --git a/debian/rules b/debian/rules index 1d2f446..009a3ba 100755 --- a/debian/rules +++ b/debian/rules @@ -16,6 +16,12 @@ export AUTOMATED_TESTING = 1 override_dh_auto_configure: dh_auto_configure --parallel -- --enable-reduced-depends +# Disable the strictness test, since precise doesn't have the dependencies. +override_dh_auto_test: + mv perl/t/style/strict.t perl/t/style/strict.t-off + dh_auto_test --parallel + mv perl/t/style/strict.t-off perl/t/style/strict.t + # Install the remctl configuration as part of the build. override_dh_auto_install: dh_auto_install |