summaryrefslogtreecommitdiff
path: root/tests/convert-tests.sh
blob: 9f7a5c8b8c5e7510a0382bb15169f5942ef20c8b (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
#!/bin/bash
#
# convert ext2/3/4 images to btrfs images, and make sure the results are
# clean.
#

here=`pwd`

_fail()
{
	echo "$*" | tee -a convert-tests-results.txt
	exit 1
}

rm -f convert-tests-results.txt

test(){
	echo "     [TEST]    $1"
	shift
	echo "creating ext image with: $*" >> convert-tests-results.txt
	# 256MB is the smallest acceptable btrfs image.
	rm -f $here/test.img >> convert-tests-results.txt 2>&1 \
		|| _fail "could not remove test image file"
	truncate -s 256M $here/test.img >> convert-tests-results.txt 2>&1 \
		|| _fail "could not create test image file"
	$* -F $here/test.img >> convert-tests-results.txt 2>&1 \
		|| _fail "filesystem create failed"
	$here/btrfs-convert $here/test.img >> convert-tests-results.txt 2>&1 \
		|| _fail "btrfs-convert failed"
	$here/btrfsck $here/test.img >> convert-tests-results.txt 2>&1 \
		|| _fail "btrfsck detected errors"
}

# btrfs-convert requires 4k blocksize.
test "ext2" mke2fs -b 4096
test "ext3" mke2fs -j -b 4096
test "ext4" mke2fs -t ext4 -b 4096