On Mon, Mar 17, 2025 at 4:37 AM Nazir Bilal Yavuz <byavu...@gmail.com> wrote: > > Hi, > > I just wanted to report that the 'oauth_validator/t/001_server.pl' > test failed on FreeBSD in one of my local CI runs [1]. I looked at the > thread but could not find the same error report; if this is already > known, please excuse me.
Thanks for the report! Yes, this looks like the issue that NetBSD was having: > [11:09:56.548] # [libcurl] * Trying [::1]:39251... > [11:09:56.548] # [libcurl] * Connected to localhost (::1) port 39251 Curl should not have connected to ::1 (the test server isn't listening on IPv6). Whatever is talking on that port doesn't understand HTTP, and we later fail with the "HTTP/0.9" error -- a slightly confusing way to describe a protocol violation. 0001 will fix that. I think we should get that and 0002 in, ASAP. (And the others.) Thomas has shown me a side quest to get rid of the second kqueue instance, but so far that is not bearing fruit and we shouldn't wait on it. Thanks again! --Jacob