diff options
author | Richard Levitte <levitte@openssl.org> | 2019-09-11 11:16:53 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-09-12 14:39:09 +0200 |
commit | 799614faa3f921ff6ea49e700cbe8a9fb4febf4c (patch) | |
tree | a08e95d4f240d177b3110691aadf740dc415422f /.travis.yml | |
parent | Rework test/run_tests.pl to support selective verbosity and TAP copy (diff) | |
download | openssl-799614faa3f921ff6ea49e700cbe8a9fb4febf4c.tar.xz openssl-799614faa3f921ff6ea49e700cbe8a9fb4febf4c.zip |
Travis and Appveyor: use HARNESS_VERBOSE_FAILURE rather than HARNESS_VERBOSE
This allows for shorter logs, and also logs that only show the details
for tests that fail.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9862)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6f97a6bebb..ade61d1d60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -195,7 +195,7 @@ script: if [ -e krb5/src ]; then sudo apt-get -yq install bison dejagnu gettext keyutils ldap-utils libldap2-dev libkeyutils-dev python-cjson python-paste python-pyrad slapd tcl-dev tcsh; fi; - if ! HARNESS_VERBOSE=yes BORING_RUNNER_DIR=$top/boringssl/ssl/test/runner make test; then + if ! HARNESS_VERBOSE_FAILURE=yes BORING_RUNNER_DIR=$top/boringssl/ssl/test/runner make test; then echo -e '\052\052 FAILED -- MAKE TEST'; travis_terminate 1; fi; |