Whamcloud - gitweb
LU-3326 tests: limit the disk space used by run_*.sh
[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 $(lustre_version_code client), \
25               mds $(lustre_version_code $SINGLEMDS), ost $(lustre_version_code ost1)"
26     elif ! [ "$NETTYPE" = "tcp" -o "$NETTYPE" = "ptl" ]; then
27         skip "NETTYPE=$NETTYPE unsupported for liblustre"
28     elif [ ! -x $LIBLUSTRETESTS/sanity ]; then
29         skip "$LIBLUSTRETESTS/sanity: not found"
30     else
31         mkdir -p $MOUNT2
32         echo $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET
33         $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET
34         if [ "$LIBLUSTRE_EXCEPT" ]; then
35             LIBLUSTRE_OPT="$LIBLUSTRE_OPT \
36                         $(echo ' '$LIBLUSTRE_EXCEPT  | sed -re 's/\s+/ -e /g')"
37         fi
38         echo $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET $LIBLUSTRE_OPT
39         $LIBLUSTRETESTS/sanity --target=$LIBLUSTRE_MOUNT_TARGET $LIBLUSTRE_OPT
40     fi
41 }
42 run_test 1 "liblustre sanity"
43
44 complete $SECONDS
45 check_and_cleanup_lustre
46 exit_status