diff options
author | Guillem Jover <guillem@debian.org> | 2016-10-30 20:05:11 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2016-10-30 20:14:31 +0100 |
commit | 703872d23958cf0a427f323026961b0dfbfdf99f (patch) | |
tree | 8cf060722568c88a8fb46dd59b991e7d2e53d9ca /debian/rules | |
parent | c84047753a72533f716c9ab245cce01297ccb297 (diff) | |
download | dpkg-703872d23958cf0a427f323026961b0dfbfdf99f.tar.gz |
debian: Run autotest test suite in verbose mode
The autotest machinery does not print any log when a test fails which is
less than helpful when run on a build daemon.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 8de6cf291..a522afa02 100755 --- a/debian/rules +++ b/debian/rules @@ -81,7 +81,8 @@ check: build dh_testdir ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - cd build-tree && $(MAKE) VERBOSE=1 TEST_PARALLEL=$(NUMJOBS) check + cd build-tree && $(MAKE) VERBOSE=1 TESTSUITEFLAGS=--verbose \ + TEST_PARALLEL=$(NUMJOBS) check endif # Install the package underneath debian/tmp |