]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Try disabling OCSP test before running it (duh).
authorJoe Orton <jorton@apache.org>
Thu, 6 Jan 2022 08:09:04 +0000 (08:09 +0000)
committerJoe Orton <jorton@apache.org>
Thu, 6 Jan 2022 08:09:04 +0000 (08:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896740 13f79535-47bb-0310-9956-ffa450edef68

test/travis_run_linux.sh

index 32785835d912e798bd95a52eba8fac823a9ee3bb..8a3fce34654c8b659216e6e41e53ef81d0be907b 100755 (executable)
@@ -116,6 +116,11 @@ if ! test -v SKIP_TESTING; then
     sudo sysctl -w kernel.core_uses_pid=1 2>/dev/null || true
 
     if ! test -v NO_TEST_FRAMEWORK; then
+        if ! test -v TEST_OPENSSL3; then
+            #### this test started failing in Dec 2021 for unknown reasons
+            rm -f test/perl-framework/t/ssl/ocsp.t
+        fi
+
         if test -v WITH_TEST_SUITE; then
             make check TESTS="${TESTS}" TEST_CONFIG="${TEST_ARGS}"
             RV=$?
@@ -134,11 +139,6 @@ if ! test -v SKIP_TESTING; then
             RV=4
         fi
     fi
-
-    if ! test -v TEST_OPENSSL3; then
-        #### this test started failing in Dec 2021 for unknown reasons
-        rm -f test/perl-framework/t/ssl/ocsp.t
-    fi
     
     if test -v TEST_SSL -a $RV -eq 0; then
         pushd test/perl-framework