Whamcloud - gitweb
Dump debug log at end of test in case of error.
[fs/lustre-release.git] / lustre / tests / runtests
1 #!/bin/sh
2 #
3 # Script which does some basic tests to ensure we haven't regressed.
4 # Probably a good idea to run this before doing any checkins.
5 # In the future this can become more fancy, but it's OK for now.
6
7 SRCDIR="`dirname $0`"
8 fail() { 
9         echo "ERROR: $1" 1>&2
10         [ $2 ] && RC=$2 || RC=1
11         exit $RC
12 }
13
14 export PATH=/sbin:/usr/sbin:$SRCDIR:$PATH
15
16 cleanup() {
17         $LCONF --cleanup --dump /tmp/debug $OPTS
18         trap 0
19 }
20
21 ERROR=
22 SRC=/etc
23 [ "$COUNT" ] || COUNT=1000
24
25 [ "$LCONF" ] || LCONF=$SRCDIR/../utils/lconf
26
27 OSCMT="`mount | awk '/ lustre_lite / { print $3 }' | tail -1`"
28 if [ -z "$OSCMT" ]; then
29         [ -z "$*" ] && fail "usage: $0 [--reformat] <conf>.xml" 1
30         $LCONF $@ || exit 1
31         trap cleanup 0
32         OSCMT="`mount | awk '/ lustre_lite / { print $3 }' | tail -1`"
33         [ -z "$OSCMT" ] && fail "no lustre filesystem mounted" 1
34 fi
35
36 while [ "$1" ]; do
37         case $1 in
38         -v|--verbose) V=-v;;
39         --reformat) : ;;
40         *) OPTS="$OPTS $1" ;;
41         esac
42         shift
43 done
44
45 OSCTMP=`echo $OSCMT | tr "/" "."`
46 USED=`df | awk "/$OSCTMP/ { print \\$3 }" | tail -1`
47 USED=`expr $USED + 16`  # Some space for the status file
48
49 # let's start slowly here...
50 echo "touching $OSCMT"
51 touch $OSCMT || fail "can't touch $OSCMT" 2
52 HOSTS=$OSCMT/hosts.$$
53 echo "copying /etc/hosts to $HOSTS"
54 cp /etc/hosts $HOSTS || fail "can't cp /etc/hosts to $HOSTS" 3
55 echo "comparing /etc/hosts and $HOSTS"
56 diff -u /etc/hosts $HOSTS || fail "$HOSTS different" 4
57 echo "renaming $HOSTS to $HOSTS.ren"
58 mv $HOSTS $HOSTS.ren || fail "can't rename $HOSTS to $HOSTS.ren" 5
59 echo "copying /etc/hosts to $HOSTS again"
60 cp /etc/hosts $HOSTS || fail "can't cp /etc/hosts to $HOSTS again" 6
61 echo "truncating $HOSTS"
62 > $HOSTS || fail "can't truncate $HOSTS" 8
63 echo "removing $HOSTS"
64 rm $HOSTS || fail "can't remove $HOSTS" 9
65
66 DST=$OSCMT/runtest.$$
67 # let's start slowly here...
68 echo "creating $DST"
69 mkdir $DST || fail "can't mkdir $DST" 10
70
71 # ok, that hopefully worked, so let's do a little more
72 FILES=`find $SRC -type f | head -$COUNT`
73 echo "copying files from $SRC to $DST$SRC"
74 tar cf - $FILES | tar xvf - -C $DST || fail "copying $SRC" 11
75
76 echo "comparing newly copied files"
77 for f in $FILES; do
78         [ $V ] && echo "verifying $DST/$f"
79         diff -q $f $DST/$f || ERROR=11
80 done
81
82 [ "$ERROR" ] && fail "old and new files are different" $ERROR
83
84 $LCONF --cleanup $OPTS || exit 19
85 $LCONF $OPTS || exit 20
86
87 echo "comparing previously copied files"
88 for f in $FILES; do
89         [ $V ] && echo "verifying $DST/$f"
90         diff -q $f $DST/$f || ERROR=22
91 done
92
93 [ "$ERROR" ] && fail "old and new files are different on second diff" $ERROR
94
95 $LCONF --cleanup $OPTS || exit 29
96 $LCONF $OPTS || exit 30
97
98 echo "renaming $HOSTS.ren to $HOSTS"
99 mv $HOSTS.ren $HOSTS || fail "can't rename $HOSTS.ren to $HOSTS" 32
100 echo "truncating $HOSTS"
101 > $HOSTS || fail "can't truncate $HOSTS" 34
102 echo "removing $HOSTS"
103 rm $HOSTS || fail "can't remove $HOSTS again" 36
104 echo "removing $DST"
105 rm -r $V $DST || fail "can't remove $DST" 37
106
107 NOWUSED=`df | awk "/$OSCTMP/ { print \\$3 }" | tail -1`
108 if [ $NOWUSED -gt $USED ]; then
109         echo "Space not all freed: now ${NOWUSED}kB, was ${USED}kB." 1>&2
110         echo "This is normal on BA OSTs, because of subdirectories." 1>&2
111 fi
112
113 cleanup $OPTS || exit 29