From ae6dcc001d250e749a0b63ded5fbab40f0a155b0 Mon Sep 17 00:00:00 2001 From: Johannes Schauer Marin Rodrigues Date: Mon, 8 Jan 2024 22:36:07 +0100 Subject: [PATCH] tests/install-busybox-based-sub-essential-system: busybox 1:1.36.1-6 moved to /usr --- tests/install-busybox-based-sub-essential-system | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/install-busybox-based-sub-essential-system b/tests/install-busybox-based-sub-essential-system index 94e036f..c6f6dc5 100644 --- a/tests/install-busybox-based-sub-essential-system +++ b/tests/install-busybox-based-sub-essential-system @@ -22,11 +22,11 @@ chroot /tmp/debian-chroot dpkg-query -f '${binary:Package}\n' -W \ rm /tmp/expected for cmd in echo cat sed grep; do test -L /tmp/debian-chroot/bin/$cmd - test "$(readlink /tmp/debian-chroot/bin/$cmd)" = "/bin/busybox" + test "$(readlink /tmp/debian-chroot/bin/$cmd)" = "/usr/bin/busybox" done for cmd in sort tee; do test -L /tmp/debian-chroot/usr/bin/$cmd - test "$(readlink /tmp/debian-chroot/usr/bin/$cmd)" = "/bin/busybox" + test "$(readlink /tmp/debian-chroot/usr/bin/$cmd)" = "/usr/bin/busybox" done chroot /tmp/debian-chroot echo foobar \ | chroot /tmp/debian-chroot cat \