From: Stefan Eissing Date: Thu, 16 Dec 2021 09:18:17 +0000 (+0000) Subject: *) test: enabling proxy tests. X-Git-Tag: 2.5.0-alpha2-ci-test-only~636 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=446e161e6cdcfee4fce17dafb17eb3dd1b788f77;p=thirdparty%2Fapache%2Fhttpd.git *) test: enabling proxy tests. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896030 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/.travis.yml b/.travis.yml index 1f77b14bf97..efe827e85c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -286,12 +286,12 @@ jobs: TEST_SSL=1 TEST_OPENSSL3=3.0.1 # ------------------------------------------------------------------------- - if: *condition_not_24x - name: Linux Ubuntu, MPMs [event, worker], core + HTTP/2 test suite + name: Linux Ubuntu, MPMs [event, worker], core + proxy + HTTP/2 test suite dist: focal env: APR_VERSION=1.7.0 APU_VERSION=1.6.1 APU_CONFIG="--with-crypto" CONFIG="--enable-mods-shared=reallyall --with-mpm=event --enable-mpms-shared=all" - NO_TEST_FRAMEWORK=1 TEST_INSTALL=1 TEST_H2=1 TEST_CORE=1 + NO_TEST_FRAMEWORK=1 TEST_INSTALL=1 TEST_H2=1 TEST_CORE=1 TEST_PROXY=1 addons: apt: sources: diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh index 9b0ce4bbbb1..4e7d86f0141 100755 --- a/test/travis_run_linux.sh +++ b/test/travis_run_linux.sh @@ -187,6 +187,12 @@ if ! test -v SKIP_TESTING; then RV=$? fi + if test -v TEST_PROXY -a $RV -eq 0; then + # Run proxy tests. + py.test-3 test/modules/proxy + RV=$? + fi + if test -v TEST_H2 -a $RV -eq 0; then # Run HTTP/2 tests. MPM=event py.test-3 test/modules/http2