diff options
author | Luca Toscano <elukey@apache.org> | 2020-01-06 19:28:45 +0100 |
---|---|---|
committer | Luca Toscano <elukey@apache.org> | 2020-01-06 19:28:45 +0100 |
commit | 894b6a18504109e90827705f899ebbcbb532d805 (patch) | |
tree | 6d442f6c4eeea1ecf9c58ba9fb9b0bccd4d3acc6 /.travis.yml | |
parent | Add Travis job which runs tests in random order. (diff) | |
download | apache2-894b6a18504109e90827705f899ebbcbb532d805.tar.xz apache2-894b6a18504109e90827705f899ebbcbb532d805.zip |
travis: add verbose config to perl test suite for Ubuntu Worker All Modules
For some reason we get sporadic failures only in Ubuntu Worker All Modules' test:
t/apache/rwrite.t ................... 53/? # Failed test 113 in /home/travis/build/apache/httpd/test/perl-framework/blib/lib/Apache/TestCommon.pm at line 56 fail #113
t/apache/rwrite.t ................... Failed 1/114 subtests
Recent examples:
https://travis-ci.org/apache/httpd/jobs/632425202
https://travis-ci.org/apache/httpd/jobs/633250739
Add "-verbose" as test option to capture more data about the failure
when it happens.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1872389 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index acb49cb66d..6025a2e942 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,6 +55,7 @@ matrix: # ------------------------------------------------------------------------- - name: Linux Ubuntu, Worker MPM, all-modules env: CONFIG="--enable-mods-shared=reallyall --with-mpm=worker" + TEST_ARGS="-verbose" # ------------------------------------------------------------------------- - name: Linux Ubuntu, Shared MPMs, all-modules env: CONFIG="--enable-mods-shared=reallyall --enable-mpms-shared=all" |