forked from bestouff/genext2fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-mount.sh
executable file
·111 lines (98 loc) · 2.38 KB
/
test-mount.sh
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/sh
# Use this script if you need to regenerate the digest values
# in test.sh, or if you don't care about digests and you just
# want to see some fsck results. Should be run as root.
# Each test here creates a test image, verifies it and prints
# the command line for use in test.sh for regression testing.
set -e
. ./test-gen.lib
test_mnt=t_mnt
test_common () {
/sbin/e2fsck -fn $test_img || fail
mkdir $test_mnt
mount -t ext2 -o ro,loop $test_img $test_mnt || fail
}
test_cleanup () {
umount $test_mnt
rmdir $test_mnt
rm -f fout lsout
}
fail () {
echo FAIL
test_cleanup
gen_cleanup
exit 1
}
pass () {
cmd=$1
shift
md5=`calc_digest`
echo PASS
echo $cmd $md5 $@
test_cleanup
gen_cleanup
}
# dtest_mount - Exercise the -d option of genext2fs.
dtest_mount () {
size=$3
dgen $@
test_common
test -f $test_mnt/file.$size || fail
test $size = "`ls -al $test_mnt | \
grep file.$size | \
awk '{print $5}'`" || fail
pass dtest $@
}
# ftest_mount - Exercise the -D option of genext2fs.
ftest_mount () {
fname=$3
fgen $@
test_common
test -d $test_mnt/dev || fail
# Exclude those devices that have interpolated
# minor numbers, as being too hard to match.
egrep -v "(hda|hdb|tty|loop|ram|ubda)" $fname | \
grep '^[^ #]* [bc]' | \
awk '{print $1,$4,$5,$6","$7}'| \
sort -d -k3.6 > fout
ls -aln $test_mnt/dev | \
egrep -v "(hda|hdb|tty|loop|ram|ubda)" | \
grep ^[bc] | \
awk '{ print "/dev/"$10,$3,$4,$5$6}' | \
sort -d -k3.6 > lsout
diff fout lsout || fail
pass ftest $@
}
# ltest_mount - Exercise the -d option of genext2fs, with symlink.
ltest_mount () {
appendage=$3
lgen $@
test_common
cd $test_mnt
readlink symlink > ../lsout
cd ..
test -s lsout || fail
echo 12345678901234567890123456789012345678901234567890$appendage > fout
diff fout lsout || fail
pass ltest $@
}
dtest_mount 4096 1024 0
dtest_mount 2048 2048 0
dtest_mount 1024 4096 0
dtest_mount 8193 1024 0
dtest_mount 8194 1024 0
dtest_mount 8193 4096 0
dtest_mount 8194 2048 0
dtest_mount 4096 1024 1
dtest_mount 1024 4096 1
dtest_mount 4096 1024 12288
dtest_mount 4096 1024 274432
dtest_mount 9000 1024 8388608
dtest_mount 4500 2048 8388608
dtest_mount 2250 4096 8388608
dtest_mount 20000 1024 16777216
dtest_mount 10000 2048 16777216
ftest_mount 4096 default device_table.txt
ltest_mount 200 1024 123456789
ltest_mount 200 1024 1234567890
ltest_mount 200 4096 12345678901