mirror of
https://github.com/kdave/btrfs-progs
synced 2025-05-16 23:08:38 +00:00
No need to use a temporary variable if the parameter usage is obvious from the context. Signed-off-by: David Sterba <dsterba@suse.com>
17 lines
315 B
Bash
Executable File
17 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
# Make sure btrfs check won't report any false alerts for valid image with
|
|
# reloc tree.
|
|
#
|
|
# Also due to the short life span of reloc tree, save the as dump example for
|
|
# later usage.
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_prereq btrfs
|
|
|
|
check_image() {
|
|
run_check "$TOP/btrfs" check "$1"
|
|
}
|
|
|
|
check_all_images
|