mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
synced 2024-11-27 14:14:30 +08:00
9d98ad1db5
Create a ready-to-use templates for the most common tests, copied from readme. Signed-off-by: David Sterba <dsterba@suse.com>
11 lines
149 B
Bash
11 lines
149 B
Bash
#!/bin/bash
|
|
# Run check on all images
|
|
|
|
source "$TEST_TOP/common"
|
|
|
|
check_image() {
|
|
run_check "$TOP/btrfs" check --readonly "$1"
|
|
}
|
|
|
|
check_all_images
|