Whamcloud - gitweb
LU-946 lprocfs: List open files in filesystem
[fs/lustre-release.git] / lustre / tests / run-llog.sh
1 #!/bin/bash
2
3 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
4
5 load_llog_test() {
6     grep -q llog_test /proc/modules && return
7     # Module should have been placed with other lustre modules...
8     modprobe llog_test 2>&1 | grep -v "llog_test not found"
9     grep -q llog_test /proc/modules && return
10     # But maybe we're running from a developer tree...
11     insmod $LUSTRE/obdclass/llog_test.ko
12     grep -q llog_test /proc/modules && return
13     echo "Unable to load llog_test module!"
14     false
15     return
16 }
17
18 PATH=`dirname $0`:$LUSTRE/utils:$PATH
19 TMP=${TMP:-/tmp}
20
21 MGS=`lctl dl | awk '/mgs/ { print $4 }'`
22 [ -z "$MGS" ] && echo "$0: SKIP: no MGS available, skipping llog test" && exit 0
23
24 load_llog_test || exit 0
25 lctl modules > $TMP/ogdb-`hostname`
26 echo "NOW reload debugging syms.."
27
28 RC=0
29 lctl <<EOT || RC=2
30 attach llog_test llt_name llt_uuid
31 setup $MGS
32 EOT
33
34 # Using ignore_errors will allow lctl to cleanup even if the test fails.
35 lctl <<EOC
36 device llt_name
37 ignore_errors
38 cleanup
39 detach
40 EOC
41 rmmod llog_test || RC2=3
42 [ $RC -eq 0 -a "$RC2" ] && RC=$RC2
43
44 exit $RC