summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/021-partially-dropped-snapshot-case
diff options
context:
space:
mode:
authorDimitri John Ledkov <xnox@ubuntu.com>2018-01-11 15:44:55 +0000
committerDimitri John Ledkov <xnox@ubuntu.com>2018-01-11 15:44:55 +0000
commitd78d642bffff6ea49d62c19f26052ed6d3dcc467 (patch)
treedb0f470018ee6f4b93fb8fd601401fa157e5dbe3 /tests/fsck-tests/021-partially-dropped-snapshot-case
parentb309a4dfbe8130b9fef087df59dd18a487a9c18e (diff)
New upstream release.
Diffstat (limited to 'tests/fsck-tests/021-partially-dropped-snapshot-case')
-rwxr-xr-xtests/fsck-tests/021-partially-dropped-snapshot-case/test.sh16
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh b/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh
index 44a33a63..5d997e24 100755
--- a/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh
+++ b/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh
@@ -1,18 +1,22 @@
#!/bin/bash
-# confirm whether btrfsck supports to check a partially dropped snapshot
+# confirm whether 'btrfs check' supports check ing of a partially dropped
+# snapshot
source "$TOP/tests/common"
check_prereq btrfs
-for img in *.img
-do
- image=$(extract_image "$img")
+check_image()
+{
+ local image
+
+ image=$1
run_check_stdout "$TOP/btrfs" check "$image" 2>&1 |
grep -q "Errors found in extent allocation tree or chunk allocation"
if [ $? -eq 0 ]; then
rm -f "$image"
_fail "unexpected error occurred when checking $img"
fi
- rm -f "$image"
-done
+}
+
+check_all_images