-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests, fix h3 server check and parallel instances #11553
Conversation
- fix check for availability of nghttpx server - add `tcp` frontend config for same port as quic, as without this, port 3000 is bound which clashes for parallel testing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've never installed nghttpx so I always ignored those error messages—sorry.
tests/http3-server.pl
Outdated
"--frontend=\"*,$listenport;quic\" ". | ||
"--log-level=INFO ". | ||
"--pid-file=$pidfile ". | ||
"--errorlog-file=$logfile ". | ||
"--conf=$conf ". | ||
"$keyfile $certfile"; | ||
print "RUN: $cmdline\n" if($verbose); | ||
print "RUN: $cmdline\n" if($verbose or 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"or 1" looks like a debugging leftover
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this!
- fix check for availability of nghttpx server - add `tcp` frontend config for same port as quic, as without this, port 3000 is bound which clashes for parallel testing Closes curl#11553
tcp
frontend config for same port as quic, as without this, port 3000 is bound which clashes for parallel testing