summaryrefslogtreecommitdiff
path: root/tests/fsck-tests/036-bad-dev-extents/test.sh
blob: 88ea0aec5ba6696bc214834a7c6f3774e89f6a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
#
# Due to DUP chunk allocator bugs, we could allocate DUP chunks while its dev
# extents could exist beyond device boundary.
# And since all related items (block group, chunk, device used bytes) are all
# valid, btrfs check won't report any error.
#
# This test case contains hand crafted minimal image, to test if btrfs check
# can detect and report such error.

source "$TEST_TOP/common"

check_prereq btrfs

check_image() {
	run_mustfail "btrfs check failed to detect invalid dev extents" \
		"$TOP/btrfs" check "$1"
}

check_all_images