generic/395: remove workarounds for wrong error codes
[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
25 _require_test
26 _require_user
27 _require_odirect
28
29 TESTDIR=$TEST_DIR/ftrunc
30 TESTFILE=$TESTDIR/ftrunc.tmp
31
32 [ -d $TESTDIR ] && rm -r $TESTDIR
33 mkdir $TESTDIR
34
35 # ftrunc must be run as a mortal user.
36 touch $TESTFILE
37
38 chmod a+rw $TESTDIR
39 chmod a+rw $TESTFILE
40
41 # don't use $here/src/ftrunc, as we're running it as a regular user, and $here
42 # may contain path component that a regular user doesn't have search permission
43 su $qa_user -c "./src/ftrunc -f $TESTFILE"
44
45 if [ "$?" != "0" ];  then
46     echo src/ftrunc returned non 0 status!
47 fi
48
49 $here/src/trunc -f $TESTFILE
50 if (test $? -eq 0 ) then
51     status=0
52 fi
53
54 exit