mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-14 10:25:27 +00: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
|