summaryrefslogtreecommitdiffstats
path: root/tests/f_mke2fs_baddisk/script
blob: 7ce8c5c43a7e9561c3459880769c7defaabe424e (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
test_description="mke2fs /dev/mapper/bad_disk should fail"

OUT=$test_name.log

dmsetup create -v bad_disk --table '0 1148681097 error' > $OUT 2>&1
status=$?
if [ "$status" != 0 ]; then
    echo "$test_name: $test_description: skip"
    touch $test_name.ok
else
    echo mke2fs /dev/mapper/bad_disk  >> $OUT
    $MKE2FS  /dev/mapper/bad_disk  >> $OUT 2>&1
    status=$?
    sleep 1
    dmsetup remove --retry bad_disk >> $OUT 2>&1

    if [ "$status" = 0 ] ; then
	ln -f $test_name.log $test_name.failed
	echo "$test_name: $test_description: failed"
    else
	echo "$test_name: $test_description: ok"
	touch $test_name.ok
    fi
fi