Whamcloud - gitweb
LU-814 test: automate NFS over lustre testing
[fs/lustre-release.git] / lustre / tests / liblustre.sh
1 #!/bin/bash
2 #
3 #set -vx
4
5 set -e
6
7 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
8 . $LUSTRE/tests/test-framework.sh
9 init_test_env $@
10 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
11 init_logging
12
13 LIBLUSTRETESTS=${LIBLUSTRETESTS:-$LUSTRE/liblustre/tests}
14
15 assert_env MGSNID MOUNT2
16 export LIBLUSTRE_MOUNT_POINT=$MOUNT2
17 export LIBLUSTRE_MOUNT_RETRY=5
18 export LIBLUSTRE_MOUNT_TARGET=$MGSNID:/$FSNAME
19 export LIBLUSTRE_TIMEOUT=`lctl get_param -n timeout`
20 #export LIBLUSTRE_DEBUG_MASK=`lctl get_param -n debug`
21
22 test_1() {
23     if ! check_versions; then
24         skip "liblustre version mismatch: cli $CLIVER, mds $MDSVER, ost $OSTVER"
25     elif ! [ "$NETTYPE" = "tcp" -o "$NETTYPE" = "ptl" ]; then
26         skip "NETTYPE=$NETTYPE unsupported for liblustre"
27     elif [ ! -x $LIBLUSTRETESTS/sanity ]; then
28         skip "$LIBLUSTRETESTS/sanity: not found"
29     else
30         mkdir -p $MOUNT2
31         echo $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET
32         $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET
33         if [ "$LIBLUSTRE_EXCEPT" ]; then
34             LIBLUSTRE_OPT="$LIBLUSTRE_OPT \
35                         $(echo ' '$LIBLUSTRE_EXCEPT  | sed -re 's/\s+/ -e /g')"
36         fi
37         echo $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET $LIBLUSTRE_OPT
38         $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET $LIBLUSTRE_OPT
39     fi
40 }
41 run_test 1 "liblustre sanity"
42
43 complete $(basename $0) $SECONDS
44 check_and_cleanup_lustre
45 exit_status