diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2019-01-09 16:31:13 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-01-14 14:52:30 +0000 |
commit | e2576f9bf83486e3991ffa3fd47e34591f40f39f (patch) | |
tree | 30012b7da3f990ebad1deec93d23edb2652440da /.travis.yml | |
parent | 4036878c3a02cb29291b8a1679a7e283f674fb3c (diff) | |
download | qemu-e2576f9bf83486e3991ffa3fd47e34591f40f39f.zip qemu-e2576f9bf83486e3991ffa3fd47e34591f40f39f.tar.gz qemu-e2576f9bf83486e3991ffa3fd47e34591f40f39f.tar.bz2 |
travis: run tests in verbose mode
Travis sometimes fails a build because it produces no console output for
over 10 minutes. If this is due to a genuine hang, it would be useful to
have used verbose test output to see where it failed. If this is just
due to tests being very slow, having verbose output might allow the
build to succeed.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 744dc05..39dbda7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,7 +61,7 @@ env: global: - SRC_DIR="." - BUILD_DIR="." - - TEST_CMD="make check -j3" + - TEST_CMD="make check -j3 V=1" git: @@ -250,6 +250,6 @@ matrix: - env: - CONFIG="--disable-system --disable-docs" - - TEST_CMD="make -j3 check-tcg" + - TEST_CMD="make -j3 check-tcg V=1" dist: trusty compiler: gcc |