From f6c6c35b404d84bd4c4971e26cf0e2991d76ee67 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Sun, 11 Oct 2020 02:26:34 +0200 Subject: [PATCH] Support running tests verbosely with Make target "test-verbose" --- .travis.yml | 2 +- Makefile | 6 ++++-- NEWS.markdown | 5 +++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3dfe290..7fd1065 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ install: - export RELEASE_TESTING=1 AUTOMATED_TESTING=1 AUTHOR_TESTING=1 HARNESS_OPTIONS=j10:c HARNESS_TIMER=1 PATH=bin:${PERLBREW_PATH}:${PATH} script: - - make test + - make test-verbose after_success: - prove --exec 'env PERL5OPT=-MDevel::Cover=-ignore_re,^(t/|/usr) perl' t/*.t diff --git a/Makefile b/Makefile index 30f9b66..9fb621d 100644 --- a/Makefile +++ b/Makefile @@ -292,13 +292,15 @@ orig-tar-gz: tarball # # Run the test suite. # +test-verbose : VERBOSE = -v +test-verbose: test test: non-author-test author-test non-author-test: update-modules - prove --shuffle t/ + prove $(VERBOSE) --shuffle t/ author-test: - prove xt/ + prove $(VERBOSE) xt/ # diff --git a/NEWS.markdown b/NEWS.markdown index 500e6d2..7ec9ef3 100644 --- a/NEWS.markdown +++ b/NEWS.markdown @@ -24,6 +24,11 @@ Distribution Releases Changes + Debian 7 Wheezy + Debian 8 Jessie +Other Changes +------------- + +* Support running tests verbosely with Make target "test-verbose". + xen-tools 4.8 (released 9 Feb 2019) ===================================