Changed kermit xfsqa targets
[xfstests-dev.git] / 091
1 #! /bin/sh
2 # FS QA Test No. 091
3 #
4 # fsx exercising direct IO -- sub-block sizes and concurrent buffered IO
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
8 #-----------------------------------------------------------------------
9 #
10 # creator
11 owner=nathans@sgi.com
12
13 seq=`basename $0`
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
20
21 # get standard environment, filters and checks
22 . ./common.rc
23 . ./common.filter
24
25 # real QA test starts here
26 _supported_fs xfs
27 _supported_os Linux IRIX
28
29 [ $HOSTOS == IRIX ] && _notrun "Not working on IRIX yet"
30
31 rm -f $seq.full
32
33 run_fsx()
34 {
35         echo fsx $@ | tee -a $seq.full | sed -e "s/ $bsize / BSIZE /g" -e "s/ $psize / PSIZE /g"
36         rm -f $TEST_DIR/junk
37         $here/ltp/fsx $@ $TEST_DIR/junk >>$seq.full 2>&1
38         if [ $? -ne 0 ]; then
39                 cat $seq.full
40                 exit 1
41         fi
42 }
43
44 psize=`$here/src/feature -s`
45 bsize=512
46 # 2.4 Linux kernels support bsize aligned direct I/O only
47 kernel=`uname -r  | sed -e 's/\(2\..\).*/\1/'`
48 [ "$HOSTOS" = "Linux" -a "$kernel" = "2.4" ] && bsize=$psize
49
50 # fsx usage:
51
52 # -N numops: total # operations to do 
53 # -l flen: the upper bound on file size 
54 # -o oplen: the upper bound on operation size (64k default)
55 # -r readbdy: $psize would make reads page aligned (on i386)
56 # -t truncbdy: $psize would make truncates page aligned (on i386)
57 # -w writebdy: $psize would make writes page aligned (on i386)
58
59 # -Z: O_DIRECT (use -R, -W, -r and -w too)
60 # -R: mapped read operations DISabled
61 # -W: mapped write operations DISabled
62
63 #run_fsx -N 10000            -l 500000 -r $psize -t $psize -w $psize -Z -R -W
64  run_fsx -N 10000            -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
65  run_fsx -N 10000  -o 8192   -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
66 #run_fsx -N 10000  -o 16384  -l 500000 -r $psize -t $psize -w $psize -Z -R -W
67  run_fsx -N 10000  -o 32768  -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
68 #run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $psize -w $psize -Z -R -W
69  run_fsx -N 10000  -o 8192   -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
70 #run_fsx -N 10000  -o 16384  -l 500000 -r $psize -t $psize -w $psize -Z -R -W
71  run_fsx -N 10000  -o 32768  -l 500000 -r $psize -t $bsize -w $bsize -Z -R -W
72 #run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $psize -w $psize -Z -W
73  run_fsx -N 10000  -o 128000 -l 500000 -r $psize -t $bsize -w $bsize -Z -W
74
75 # Commented out calls above are less likely to pick up issues, so
76 # save time by commenting them out (leave 'em for manual testing).
77
78 status=0
79 exit