mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-30 01:52:10 +00:00
6572f884ba
The current user might not be able to peek into the loop files directly, use the helper. Discovered by running tests in travis. Signed-off-by: David Sterba <dsterba@suse.com>
27 lines
612 B
Bash
Executable File
27 lines
612 B
Bash
Executable File
#!/bin/bash
|
|
# recognize partitioned loop devices
|
|
|
|
source $TOP/tests/common
|
|
|
|
check_prereq mkfs.btrfs
|
|
|
|
setup_root_helper
|
|
|
|
run_check truncate -s0 img
|
|
chmod a+w img
|
|
cp partition-1g-1g img
|
|
run_check truncate -s2g img
|
|
|
|
loopdev=$(run_check_stdout $SUDO_HELPER losetup --partscan --find --show img)
|
|
base=$(basename $loopdev)
|
|
|
|
# expect partitions named like loop0p1 etc
|
|
for looppart in $(ls /dev/$base?*); do
|
|
run_check $SUDO_HELPER $TOP/mkfs.btrfs -f $looppart
|
|
run_check $SUDO_HELPER $TOP/btrfs inspect-internal dump-super $looppart
|
|
done
|
|
|
|
# cleanup
|
|
run_check $SUDO_HELPER losetup -d $loopdev
|
|
run_check truncate -s0 img
|