Problem: debian builds ignore test failures hiding issues

Solution: make test failures fail the build
This commit is contained in:
Luca Boccassi 2017-11-16 00:47:24 +00:00
parent de8f14adf5
commit 741e5c3db4

View File

@ -46,7 +46,7 @@ override_dh_auto_configure:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifneq ($(DO_TEST), no)
-dh_auto_test -- VERBOSE=1
dh_auto_test -- VERBOSE=1
else
-dh_auto_test -- VERBOSE=1
endif