fix(quic-interop): wait for sim:57832 before launching client

longrtt failed against aioquic with "Expected at least 2 ClientHellos.
Got: 1" because our client started sending Initials before the sim's
ns3 + tcpdump capture finished initializing. Only the PTO retransmit
hit the wire — the original ClientHello was sent during the sim's
~1s readiness window and never captured. aioquic, picoquic, and
quic-go all gate their client launch on /wait-for-it.sh sim:57832.
We didn't.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vitor Pamplona
2026-05-07 15:48:31 -04:00
parent 2a60a6ce5a
commit 8fb560d818
+14
View File
@@ -15,6 +15,20 @@ set -e
case "${ROLE:-client}" in
client)
# Wait for the simulator's readiness port BEFORE first send.
# The sim sets up ns3 + tcpdump capture asynchronously; until
# sim:57832 opens, packets we send are blackholed and never
# show up in the pcap. The longrtt test in particular checks
# for ≥2 ClientHellos in the trace — if our first Initial leaves
# before sim is capturing, only the PTO retransmit lands in the
# pcap and the test fails with "Expected at least 2 ClientHellos".
# aioquic, picoquic, quic-go all gate their client launch on
# this same probe. Skip if the wait helper isn't on PATH so
# off-runner invocations (no sim) keep working.
if [ -x /wait-for-it.sh ]; then
/wait-for-it.sh sim:57832 -s -t 30 || \
echo "(wait-for-it sim:57832 timed out; continuing anyway)" >&2
fi
exec /opt/quic-interop/bin/quic-interop
;;
server)