You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/10/29 10:26:40 UTC

svn commit: r1894612 - in /httpd/httpd/trunk/test: modules/http2/env.py travis_run_linux.sh

Author: icing
Date: Fri Oct 29 10:26:40 2021
New Revision: 1894612

URL: http://svn.apache.org/viewvc?rev=1894612&view=rev
Log:
 * adjust acceptable log errors fro http2 test suite on travis
 * disable building of pebble for ACME tests as golang shows trouble


Modified:
    httpd/httpd/trunk/test/modules/http2/env.py
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/modules/http2/env.py
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/modules/http2/env.py?rev=1894612&r1=1894611&r2=1894612&view=diff
==============================================================================
--- httpd/httpd/trunk/test/modules/http2/env.py (original)
+++ httpd/httpd/trunk/test/modules/http2/env.py Fri Oct 29 10:26:40 2021
@@ -70,6 +70,8 @@ class H2TestEnv(HttpdTestEnv):
         ])
         self.httpd_error_log.add_ignored_patterns([
             re.compile(r'.*malformed header from script \'hecho.py\': Bad header: x.*'),
+            re.compile(r'.*:tls_post_process_client_hello:.*'),
+            re.compile(r'.*:tls_process_client_certificate:.*'),
         ])
 
         if setup_dirs:

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1894612&r1=1894611&r2=1894612&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Fri Oct 29 10:26:40 2021
@@ -169,11 +169,17 @@ if ! test -v SKIP_TESTING; then
         # Run ACME tests.
         # need the go based pebble as ACME test server
         # which is a package on debian sid, but not on focal
-        export GOPATH=${PREFIX}/gocode
-        mkdir -p "${GOPATH}"
-        go get -u github.com/letsencrypt/pebble/...
-        cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
-        export PATH="${PATH}:${GOPATH}/bin"
+        # FAILS on TRAVIS with
+        # package github.com/letsencrypt/pebble/cmd/pebble
+        #         imports crypto/ed25519: unrecognized import path "crypto/ed25519" (import path does not begin with hostname)
+        #
+        # but works on a docker ubuntu-focal image. ???
+        # DISABLED
+        #export GOPATH=${PREFIX}/gocode
+        #mkdir -p "${GOPATH}"
+        #go get -u github.com/letsencrypt/pebble/...
+        #cd $GOPATH/src/github.com/letsencrypt/pebble && go install ./...
+        #export PATH="${PATH}:${GOPATH}/bin"
 
         py.test-3 test/modules/md
         RV=$?