btrfs-progs: tests/common: Display warning only after searching for btrfs kernel module
Signed-off-by: Lakshmipathi.G <lakshmipathi.g@giis.co.in> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
a6e5cdef43
commit
7a060ea026
|
@ -428,8 +428,12 @@ run_check_umount_test_dev()
|
|||
check_kernel_support()
|
||||
{
|
||||
if ! grep -iq 'btrfs' /proc/filesystems; then
|
||||
echo "WARNING: btrfs filesystem not listed in /proc/filesystems, some tests might fail"
|
||||
return 1
|
||||
run_check $SUDO_HELPER modprobe btrfs
|
||||
if ! grep -iq 'btrfs' /proc/filesystems; then
|
||||
echo \
|
||||
"WARNING: btrfs filesystem not found in /proc/filesystems, some tests might fail"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue