06db775b464b296738f1201ca8e1d79dfff07c4b
[xfstests-dev.git] / 275
1 #! /bin/bash
2 # FS QA Test No. 275
3 #
4 # The posix write test.  When write size is larger than disk free size,
5 # should write as much as possible until ENOSPC.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2011-2012 Fujitsu, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms 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,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25 #creator
26 owner=wu.bo@cn.fujitsu.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1    # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 _cleanup()
37 {
38         cd /
39         _scratch_unmount
40 }
41
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46 _supported_fs generic
47 _supported_os IRIX Linux
48 _require_scratch
49
50 echo "------------------------------"
51 echo "write until ENOSPC test"
52 echo "------------------------------"
53
54 rm -f $seq.full
55
56 umount $SCRATCH_DEV 2>/dev/null
57 _scratch_mkfs_sized $((2 * 1024 * 1024 * 1024)) >>$seq.full 2>&1
58 _scratch_mount
59
60 dd if=/dev/zero of=$SCRATCH_MNT/tmp1 bs=256K count=1 >>$seq.full 2>&1
61 [ $? -ne 0 ] && _fail "Error creating file"
62
63 # Attempt to completely fill fs
64 dd if=/dev/zero of=$SCRATCH_MNT/tmp2 bs=1M >>$seq.full 2>&1
65 sync
66 dd if=/dev/zero of=$SCRATCH_MNT/tmp3 bs=4K >>$seq.full 2>&1
67 sync
68 # Last effort, use O_SYNC
69 dd if=/dev/zero of=$SCRATCH_MNT/tmp4 bs=4K oflag=sync >>$seq.full 2>&1
70 # Save space usage info to the full file
71 echo "Pre rm space:" >> $seq.full
72 df $SCRATCH_MNT >>$seq.full 2>&1
73
74 # Should leave approx 256k free
75 rm -f $SCRATCH_MNT/tmp1
76 sync
77 echo "Post rm space:" >> $seq.full
78 df $SCRATCH_MNT >>$seq.full 2>&1
79 _freespace=`df -k $SCRATCH_MNT | tail -n 1 | awk '{print $4}'`
80 [ $_freespace -gt 1024 ] && _fail "could not sufficiently fill filesystem"
81
82 # Try a write larger than available space
83 dd if=/dev/zero of=$SCRATCH_MNT/tmp1 bs=1M count=1 >>$seq.full 2>&1
84 echo "Bytes written until ENOSPC:" >>$seq.full
85 du $SCRATCH_MNT/tmp1 >>$seq.full
86
87 # And at least some of it should succeed.
88 _filesize=`ls -l $SCRATCH_MNT/tmp1 | awk '{print $5}'`
89 [ $_filesize -eq 0 ] && _fail "write file err: Partial write until enospc failed; wrote 0 bytes."
90
91 echo "done"
92 status=0
93 exit