summaryrefslogtreecommitdiff
path: root/tests/common
blob: 80a538165949bf2ac0cd592572c623f3b9bbeb99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
#
# Common routines for all tests
#

_fail()
{
	echo "$*" | tee -a $RESULT
	exit 1
}

run_check()
{
	echo "############### $@" >> $RESULT 2>&1
	"$@" >> $RESULT 2>&1 || _fail "failed: $@"
}

check_prereq()
{
	if ! [ -f $top/$1 ]; then
		_fail "Failed prerequisities: $1";
	fi
}

check_image()
{
	image=$1
	echo "testing image $(basename $image)" >> $RESULT
	$top/btrfs check $image >> $RESULT 2>&1
	[ $? -eq 0 ] && _fail "btrfs check should have detected corruption"

	run_check $top/btrfs check --repair $image
	run_check $top/btrfs check $image
}

check_all_images()
{
	dir=$1
	for i in $(find $dir -iname '*.img')
	do
		echo "extracting image $(basename $i)" >> $RESULT
		$top/btrfs-image -r $i $i.restored || \
			_fail "failed to extract image $i"

		check_image $i.restored

		rm $i.restored
	done
}