On Fri, Jun 19, 2020 at 02:08:18PM +0200, Ruediger Pluem wrote:
> Anyone an idea why the Travis builds on s390x, ppc64le and arm64 always fail
> (e.g. https://travis-ci.org/github/apache/httpd/builds/700041805)? It looks 
> like the server fails to start in time when running
> the test suite.

My guess:

The test config in the test framework use

Listen 0.0.0.0:<port>

throughout... that is hard-coded in Apache::Test IIRC

but if you look at the Apache::Test output in those failing jobs, it 
always looks like this:

https://travis-ci.org/github/apache/httpd/jobs/700041828#L2397

server ip6-localhost:8529 started
server ip6-localhost:8530 listening (mod_nntp_like)

which implies it thinks localhost is ::1

so if Apache-Test is trying to connect to ::1 but httpd is only 
listening on AF_INET port 80, it will look like the server is not 
running, even if it is.

Reply via email to