summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/020-extent-ref-cases/test.sh
blob: c2b6a006310ed6b8a0424a4c11dc5807ffd1ea1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# In order to confirm that btrfsck supports to check a variety of refs, add the
# following cases:
#
# * keyed_block_ref
# * keyed_data_ref
# * shared_block_ref
# * shared_data_ref
# * no_inline_ref (a extent item without inline ref)
# * no_skinny_ref

source $TOP/tests/common

check_prereq btrfs

for img in *.img
do
	image=$(extract_image $img)
	run_check_stdout $TOP/btrfs check "$image" 2>&1 |
		grep -q "Errors found in extent allocation tree or chunk allocation" &&
		_fail "unexpected error occurred when checking $img"
	rm -f "$image"
done