From c0131b812570e695e65eb3ba74c09b3787703b3f Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 7 May 2026 03:08:23 +0000 Subject: [PATCH] =?UTF-8?q?chore(quic-interop):=20inspect=20=E2=80=94=20li?= =?UTF-8?q?st=20every=20file=20in=20case=20dir=20first?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Layout varies by runner version; print the tree so we can see what the runner actually wrote (qlog/pcap/log filenames, sizes) before guessing at paths. --- quic/interop/inspect-multiplexing.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/quic/interop/inspect-multiplexing.sh b/quic/interop/inspect-multiplexing.sh index d31ced7b3..39501d218 100755 --- a/quic/interop/inspect-multiplexing.sh +++ b/quic/interop/inspect-multiplexing.sh @@ -29,6 +29,11 @@ if [[ -z "$CASE_DIR" ]]; then fi echo "==> case dir: $CASE_DIR" +echo +echo "=============== file tree under case dir ===============" +find "$CASE_DIR" -maxdepth 4 -type f -printf '%s\t%p\n' 2>/dev/null \ + || find "$CASE_DIR" -maxdepth 4 -type f -exec ls -l {} + 2>/dev/null + echo echo "=============== client/log.txt (tail) ===============" tail -n 200 "$CASE_DIR"/client/log.txt 2>/dev/null \