mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
tests/regression: fix mount test to use next available loop device
looping through the first 16 loop devices to find a free device will fail if those mount devices are taken, and unfortunately there are now services that use an excessive amount of loop devices causing the regression test to fail. Signed-off-by: John Johansen <john.johansen@canonical.com> Acked-by: Steve Beattie <steve@nxnw.org>
This commit is contained in:
parent
30348ebe9d
commit
ab0f2af1da
1 changed files with 3 additions and 15 deletions
|
@ -67,21 +67,9 @@ if [ ! -b /dev/loop0 ] ; then
|
|||
modprobe loop
|
||||
fi
|
||||
|
||||
# kinda ugly way of atomically finding a free loop device
|
||||
for i in $(seq 0 15)
|
||||
do
|
||||
if [ "$loop_device" = "unset" ]
|
||||
then
|
||||
if /sbin/losetup /dev/loop$i ${mount_file} > /dev/null 2> /dev/null
|
||||
then
|
||||
loop_device=/dev/loop$i;
|
||||
fi
|
||||
fi
|
||||
done
|
||||
if [ "$loop_device" = "unset" ]
|
||||
then
|
||||
fatalerror 'Unable to find a free loop device'
|
||||
fi
|
||||
# find the next free loop device and mount it
|
||||
loop_device=$(losetup -f) || fatalerror 'Unable to find a free loop device'
|
||||
/sbin/losetup "$loop_device" ${mount_file} > /dev/null 2> /dev/null
|
||||
|
||||
|
||||
# TEST 1. Make sure can mount and umount unconfined
|
||||
|
|
Loading…
Add table
Reference in a new issue