2cc4e2b947eed1bfa8c8082923c6c022fa9211d8
[xfstests-dev.git] / 088
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 088
22 #
23 # test out CAP_DAC_OVERRIDE and CAP_DAC_SEARCH code in 
24 # xfs_iaccess(ip,mode,cr)
25 #
26 # creator
27 owner=root@icy.melbourne.sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
36
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
40
41 _filter()
42 {
43     sed -e "s#$TEST_DIR#TEST_DIR#g" \
44         -e '/----------/d'
45 }
46
47 # link correct .out file
48 _link_out_file $seq.out
49
50 # real QA test starts here
51 _supported_fs xfs
52 _supported_os IRIX Linux
53
54 path=$TEST_DIR/t_access
55 src/t_access_root $path | tee $seq.full | _filter
56
57 # success, all done
58 status=0
59 exit