11 lines
149 B
Plaintext
11 lines
149 B
Plaintext
|
#!/bin/bash
|
||
|
# Run check on all images
|
||
|
|
||
|
source "$TEST_TOP/common"
|
||
|
|
||
|
check_image() {
|
||
|
run_check "$TOP/btrfs" check --readonly "$1"
|
||
|
}
|
||
|
|
||
|
check_all_images
|