Ensure QA tests are run with all the mount options requested
[xfstests-dev.git] / 069
1 #! /bin/sh
2 # XFS QA Test No. 069
3 # $Id: 069,v 1.3 2003/05/22 04:16:45 fsgqa Exp $
4 #
5 # Test out writes with O_APPEND flag sets.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2002 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=nathans@sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=0        # success is the default!
48 trap "rm -rf $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53
54 # real QA test starts here
55
56 _require_scratch
57 rm -f $seq.full
58
59 umount $SCRATCH_DEV >/dev/null 2>&1
60
61 echo "*** mkfs"
62 _scratch_mkfs_xfs >/dev/null || _fail "mkfs failed"
63   
64 echo "*** mount FS"
65 _scratch_mount >/dev/null || _fail "mount failed"
66
67 cd $SCRATCH_MNT
68
69 sizes="1 20 300 40000 3000000 12345"
70 for size in $sizes ; do
71         $here/src/append_writer $size &
72         echo $! $size >> pids
73 done
74
75 cd $here
76
77 wait
78 ls -lh >> $seq.full
79 echo "*** PIDs file" >> $seq.full
80 cat $SCRATCH_MNT/pids >> $seq.full
81
82 cat $SCRATCH_MNT/pids | while read pid size
83 do
84         echo "*** checking file with $size integers"
85         echo checking pid=$pid size=$size >> $seq.full
86         $here/src/append_reader $SCRATCH_MNT/testfile.$pid
87         status=$?
88         [ $status -ne 0 ] && \
89                 echo "maybe corrupt O_APPEND to $SCRATCH_MOUNT/testfile.$pid!"
90         echo status: $status >> $seq.full
91 done
92
93 # success, all done
94 exit