Whamcloud - gitweb
288f8477242e23ec1aa7932b56ce4dc876db746e
[fs/lustre-release.git] / lustre / tests / runregression-net.sh
1 #!/bin/sh
2 export PATH=/sbin:/usr/sbin:$PATH
3
4 SRCDIR="`dirname $0`/"
5 . $SRCDIR/common.sh
6
7 COUNT=${COUNT:-1000000}
8 COUNT_10=`expr $COUNT / 10`
9 COUNT_100=`expr $COUNT / 100`
10 COUNT_1000=`expr $COUNT / 1000`
11
12 ENDRUN=endrun-`hostname`
13
14 ECHONAME="`$OBDCTL device_list 2> /dev/null | awk '/ echo_client / { print $4 }' | tail -1`"
15
16 if [ -z "$ECHONAME" ]; then
17         echo "$0: needs an ECHO_CLIENT set up first" 1>&2
18         exit 1
19 fi
20
21 runthreads() {
22         THR=$1
23         DO=$2
24         CNT=$3
25         V=$4
26         PGS=$5
27
28         case $DO in
29         test_getattr)
30                 RW=
31                 ;;
32
33         test_brw_write)
34                 DO=test_brw
35                 RW=w
36                 ;;
37
38         test_brw_read)
39                 DO=test_brw
40                 RW=r
41                 ;;
42         esac
43
44         $OBDCTL --threads $THR v \$$ECHONAME $DO $CNT $RW $V $PGS $OID || exit 1
45
46         if [ -e endrun ]; then
47                 rm endrun
48                 echo "exiting because endrun file was found"
49                 exit 0
50         fi
51 }
52
53 [ -z "$OID" ] && OID=`$OBDCTL --device \\$$ECHONAME create 1 | awk '/is object id/ { print $6 }'`
54 [ -z "$OID" ] && echo "error creating object" 1>&2 && exit 1
55
56 # TODO: obdctl needs to check on the progress of each forked thread
57 #       (IPC SHM, sockets?) to see if it hangs.
58 for CMD in test_getattr test_brw_write test_brw_read; do
59         case $CMD in
60         test_getattr)
61                 PG=
62                 PGV=
63                 ;;
64         test_brw_write)
65                 PG=1
66                 PGV=16
67                 ;;
68         test_brw_read)
69                 PG=1
70                 PGV=16
71                 ;;
72         esac
73
74         # We use '--threads 1 X' instead of '--device X' so that
75         # obdctl can monitor the forked thread for progress (TODO).
76         runthreads 1 $CMD 1 1 $PG
77         runthreads 1 $CMD 100 1 $PG
78
79         debug_server_off
80         debug_client_off
81         runthreads 1 $CMD $COUNT_100 -10 $PG
82         [ "$PGV" ] && runthreads 1 $CMD $COUNT_1000 -10 $PGV
83
84         runthreads 1 $CMD $COUNT -30 $PG
85         [ "$PGV" ] && runthreads 1 $CMD $COUNT_10 -30 $PGV
86
87         runthreads 2 $CMD $COUNT_100 -30 $PG
88         [ "$PGV" ] && runthreads 2 $CMD $COUNT_1000 -30 $PGV
89
90         runthreads 2 $CMD $COUNT -30 $PG
91         [ "$PGV" ] && runthreads 2 $CMD $COUNT_10 -30 $PGV
92
93         runthreads 10 $CMD $COUNT_10 -30 $PG
94         [ "$PGV" ] && runthreads 10 $CMD $COUNT_100 -30 $PGV
95
96         runthreads 100 $CMD $COUNT_100 -30 $PG
97         [ "$PGV" ] && runthreads 100 $CMD $COUNT_1000 -30 $PGV
98 done
99
100 $OBDCTL --device \$$ECHONAME destroy $OID