]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
*) test: enabling proxy tests.
authorStefan Eissing <icing@apache.org>
Thu, 16 Dec 2021 09:18:17 +0000 (09:18 +0000)
committerStefan Eissing <icing@apache.org>
Thu, 16 Dec 2021 09:18:17 +0000 (09:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896030 13f79535-47bb-0310-9956-ffa450edef68

.travis.yml
test/travis_run_linux.sh

index 1f77b14bf977069acabb20f7f7d5c23244daf65f..efe827e85c9bcb7095c67846788321b2ddc25e97 100644 (file)
@@ -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:
index 9b0ce4bbbb19130ea7b0965f348a1f3740baf912..4e7d86f0141e7fd1cdc1f063d642daeba6bd0724 100755 (executable)
@@ -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