48811dbf315c7183deee2a59bd8dd71f05f74cc4
[xfstests-dev.git] / tests / generic / 125
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # FSQA Test No. 125
6 #
7 # ftruncate test, modified from CXFSQA tests cxfs_ftrunc and cxfs_trunc
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "exit \$status" 0 1 2 3 15
17
18 # get standard environment, filters and checks
19 . ./common/rc
20 . ./common/filter
21
22 # real QA test starts here
23 _supported_fs generic
24 _supported_os Linux
25
26 _require_test
27 _require_user
28 _require_odirect
29
30 TESTDIR=$TEST_DIR/ftrunc
31 TESTFILE=$TESTDIR/ftrunc.tmp
32
33 [ -d $TESTDIR ] && rm -r $TESTDIR
34 mkdir $TESTDIR
35
36 # ftrunc must be run as a mortal user.
37 touch $TESTFILE
38
39 chmod a+rw $TESTDIR
40 chmod a+rw $TESTFILE
41
42 su $qa_user -c "./src/ftrunc -f $TESTFILE"
43
44 if [ "$?" != "0" ];  then
45     echo src/ftrunc returned non 0 status!
46 fi
47
48 src/trunc -f $TESTFILE
49 if (test $? -eq 0 ) then
50     status=0
51 fi
52
53 exit