aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2017-10-11 07:11:34 +0200
committerAlexander Couzens <lynxis@fe80.eu>2017-10-11 07:11:55 +0200
commit51640389935ddd785219acb4e3090309074d7705 (patch)
treeddac6c240366a9862bd5b25d03f3b7b8ac0d8bf2 /debian
parenta3f4e79a9db1f04efd73f5d088e5b7423ac69630 (diff)
debian/rules: show testsuite.log when tests are failing
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/rules4
1 files changed, 4 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules
index 03432e6..3e2c91f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,3 +16,7 @@ override_dh_autoreconf:
override_dh_strip:
dh_strip --dbg-package=libosmo-ranap-dbg
dh_strip --dbg-package=osmo-hnbgw
+
+# Print test results in case of a failure
+override_dh_auto_test:
+ dh_auto_test || (find . -name testsuite.log -exec cat {} \; ; false)