summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@reproducible-builds.org>2020-12-29 17:54:31 +0000
committerVagrant Cascadian <vagrant@debian.org>2020-12-29 20:00:40 -0800
commitd6d5318336fb15ee462f8165b93a9d39dafc4f6a (patch)
treeeccff086f663f83b76ec4d20f8b6ee6edb713b61 /debian
parentd3a2c9afa4351887ce86483050c44e348d6be61e (diff)
debian/rules: Add dh_auto_test override to not fail on test suite failures.
The previous versions never ran the tests, now we can at least see in the build logs which failures occur.
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/rules4
1 files changed, 4 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
index d5b6fdf..154510d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,3 +46,7 @@ override_dh_installemacsen:
override_dh_installman:
dh_installman debian/manpages/fixnt.1 debian/manpages/composeglyphs.1 debian/manpages/a2ps-lpr-wrapper.1
+
+override_dh_auto_test:
+ # Test suite was not run on previous versions; run it but accept failures
+ dh_auto_test || echo 'WARNING: Some tests failed!'