From 07cbd02e9a08cb0f773edb04475586f123675670 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 21 May 2024 05:35:50 +0900 Subject: [PATCH] test: collect information about loopback device on failure --- test/units/TEST-74-AUX-UTILS.mount.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/units/TEST-74-AUX-UTILS.mount.sh b/test/units/TEST-74-AUX-UTILS.mount.sh index 98c388a272c..ba47b5384db 100755 --- a/test/units/TEST-74-AUX-UTILS.mount.sh +++ b/test/units/TEST-74-AUX-UTILS.mount.sh @@ -162,7 +162,15 @@ LOOP="$(losetup --show --find "$WORK_DIR/owner-vfat.img")" udevadm wait --timeout 60 --settle "$LOOP" # Also wait for the .device unit for the loop device is active. Otherwise, the .device unit activation # that is triggered by the .mount unit introduced by systemd-mount below may time out. -timeout 60 bash -c "until systemctl is-active $LOOP; do sleep 1; done" +if ! timeout 60 bash -c "until systemctl is-active $LOOP; do sleep 1; done"; then + # For debugging issue like + # https://github.com/systemd/systemd/issues/32680#issuecomment-2120959238 + # https://github.com/systemd/systemd/issues/32680#issuecomment-2122074805 + udevadm info "$LOOP" + udevadm info --attribute-walk "$LOOP" + cat /sys/"$(udevadm info --query property --property DEVPATH --value "$LOOP")"/loop/backing_file || : + false +fi # Mount it and check the UID/GID [[ "$(stat -c "%U:%G" "$WORK_DIR/mnt")" == "root:root" ]] systemd-mount --owner=testuser "$LOOP" "$WORK_DIR/mnt"