diff --git a/test/units/TEST-74-AUX-UTILS.mount.sh b/test/units/TEST-74-AUX-UTILS.mount.sh index 98c388a272..ba47b5384d 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"