diff options
author | Joe Orton <jorton@apache.org> | 2024-02-29 15:00:55 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2024-02-29 15:00:55 +0100 |
commit | a1f6da9855918241eba61c0d606d5f65e1c6199e (patch) | |
tree | 8b6ccb5ef15d9f3db9bace143164016afc59e707 /test/travis_run_linux.sh | |
parent | mod_ssl: Check SSL_CTX_new() return value (diff) | |
download | apache2-a1f6da9855918241eba61c0d606d5f65e1c6199e.tar.xz apache2-a1f6da9855918241eba61c0d606d5f65e1c6199e.zip |
CI tweaks:
- don't install CPAN modules if NO_TEST_FRAMEWORK is set
- remove the workaround for mod_h2 APR build caching which
should no longer be necessary now caching is fixed
- fix capturing specific perl-framework failures with "TEST -v" mode
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916055 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/travis_run_linux.sh')
-rwxr-xr-x | test/travis_run_linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index c1a6fae591..48b8b779db 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -136,7 +136,7 @@ if ! test -v NO_TEST_FRAMEWORK; then FAILERS="$FAILERS $FAILER" done < <(awk '/Failed:/{print $1}' test.log) if [ -n "$FAILERS" ]; then - t/TEST -v $FAILERS || true + make check TESTS="-v $FAILERS" || true fi # set -e would have killed us after the original t/TEST rm -f test.log |