mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-15 19:05:50 +00:00
467b49ccbb
Signed-off-by: Lakshmipathi.G <Lakshmipathi.G@giis.co.in> Signed-off-by: David Sterba <dsterba@suse.com>
20 lines
347 B
Bash
Executable File
20 lines
347 B
Bash
Executable File
#!/bin/bash
|
|
# check whether btrfsck can detect running qgroup rescan
|
|
|
|
source "$TOP/tests/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image() {
|
|
local image
|
|
|
|
image=$1
|
|
run_check_stdout "$TOP/btrfs" check "$image" 2>&1 | \
|
|
grep -q "Counts for qgroup id"
|
|
if [ $? -eq 0 ]; then
|
|
_fail "Btrfs check doesn't detect rescan correctly"
|
|
fi
|
|
}
|
|
|
|
check_all_images
|