285ec9f6832498c068a60fe53aacb961a2df362a
[xfstests-dev.git] / tests / generic / 088
1 #! /bin/bash
2 # FS QA Test No. 088
3 #
4 # test out CAP_DAC_OVERRIDE and CAP_DAC_SEARCH code in 
5 # xfs_iaccess(ip,mode,cr)
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2004 Silicon Graphics, 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
26 seqfull=$0
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 seqres=$RESULT_DIR/$seq
30 seqres=$RESULT_DIR/$seq
31 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
37
38 # get standard environment, filters and checks
39 . ./common/rc
40 . ./common/filter
41
42 _filter()
43 {
44     _filter_test_dir | sed -e '/----------/d'
45 }
46
47 # link correct .out file
48 _link_out_file $seq.out $seqfull.out
49
50 # real QA test starts here
51 _supported_fs generic
52 _supported_os IRIX Linux
53
54 path=$TEST_DIR/t_access
55 src/t_access_root $path | tee $seqres.full | _filter
56
57 # success, all done
58 status=0
59 exit