summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/021-partially-dropped-snapshot-case/test.sh
blob: 5d997e24567626de327ce839b61a059981ef765f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# confirm whether 'btrfs check' supports check ing of a partially dropped
# snapshot

source "$TOP/tests/common"

check_prereq btrfs

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
}

check_all_images