[debian] rules: Enable verbosity on tests.

We're using --gtest_brief, so only failure and overall success messages
will be printed.

This will make it easier to diagnose PPA test errors.
This commit is contained in:
David Korth 2023-07-05 18:30:43 -04:00
parent 000739724c
commit 753efb4a6f

2
debian/rules vendored
View File

@ -38,5 +38,5 @@ override_dh_auto_configure:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
CTEST_OUTPUT_ON_FAILURE=1 LD_LIBRARY_PATH=$(shell pwd)/build/lib $(MAKE) -C build test
cd build && CTEST_OUTPUT_ON_FAILURE=1 LD_LIBRARY_PATH=$(shell pwd)/lib ctest -V
endif