]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* adjust acceptable log errors fro http2 test suite on travis
authorStefan Eissing <icing@apache.org>
Fri, 29 Oct 2021 10:26:40 +0000 (10:26 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 29 Oct 2021 10:26:40 +0000 (10:26 +0000)
 * disable building of pebble for ACME tests as golang shows trouble

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1894612 13f79535-47bb-0310-9956-ffa450edef68

test/modules/http2/env.py
test/travis_run_linux.sh

index d3d0cafb28b3a5f304c05ee0c5cc3f024b7e0f7b..7923d90f25782605e60bf641965a89f957e698b0 100644 (file)
@@ -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:
index 685db80fb6aaec83e9bbf51c92ab11d1e8ca3d1d..eb235ce582e445d7cfd014ae36793056cba8378c 100755 (executable)
@@ -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=$?