1
0
mirror of synced 2026-01-13 23:26:10 +00:00

Support running tests verbosely with Make target "test-verbose"

This commit is contained in:
Axel Beckert 2020-10-11 02:26:34 +02:00
parent d7b794bc2c
commit f6c6c35b40
3 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -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/
#

View File

@ -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)
===================================