You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2022/01/06 08:09:04 UTC

svn commit: r1896740 - /httpd/httpd/trunk/test/travis_run_linux.sh

Author: jorton
Date: Thu Jan  6 08:09:04 2022
New Revision: 1896740

URL: http://svn.apache.org/viewvc?rev=1896740&view=rev
Log:
Try disabling OCSP test before running it (duh).

Modified:
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1896740&r1=1896739&r2=1896740&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Thu Jan  6 08:09:04 2022
@@ -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