From bb9ee2b0df34423f819ed120719efc5d3a3676db Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Mon, 9 Feb 2026 10:40:18 +1100 Subject: [PATCH] integration: output debug information in fd leak test Signed-off-by: Aleksa Sarai --- tests/integration/create.bats | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/create.bats b/tests/integration/create.bats index 48b665dc0..f96c2e2aa 100644 --- a/tests/integration/create.bats +++ b/tests/integration/create.bats @@ -69,6 +69,8 @@ is_allowed_fdtarget() { if ! is_allowed_fdtarget "$target"; then echo "Violation: FD $fd_name -> '$target'" violation_found=1 + else + echo "Permitted: FD $fd_name -> '$target'" fi done < <(find "/proc/$pid/fd" -type l -print0) [ "$violation_found" -eq 0 ]