diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-08-12 10:45:45 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-08-12 11:12:00 +0200 |
commit | ecaae01f31878a70771f75046b3e00173ff397b5 (patch) | |
tree | 3dbd8f8f62ca9f0e1669ebdbb5f29b98e0c4d3ea /debian | |
parent | 281383ce1b020013737b28d87988bdf477a90477 (diff) |
ctest: show test output in case of failures
ctest as run by cmake by default does not show the output of the tests
even if the tests failed. In terms of our tests it could be handy to set
it always, but unfortunately it seems like cmake doesn't allow it if the
internet is to be believed, so lets enable it at least while building
packages and on travis.
Gbp-Dch: Ignore
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index c1dba72af..b6dfc96ea 100755 --- a/debian/rules +++ b/debian/rules @@ -8,6 +8,8 @@ export DEB_BUILD_MAINT_OPTIONS := hardening=+all # do not fail as we are just experimenting with symbol files for now export DPKG_GENSYMBOLS_CHECK_LEVEL=0 +export CTEST_OUTPUT_ON_FAILURE=1 + %: dh $@ --with systemd --parallel --buildsystem=cmake |