fix common.config to allow SCRATCH_DEV and SCRATCH_MNT to be optional
[xfstests-dev.git] / 191
1 #!/bin/sh
2 # FS QA Test No. 191
3 #
4 # To call into the nfs4acl qa suite of Andreas Gruenbacher.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24 # creator
25 owner=tes@emu.melbourne.sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38
39 # real QA test starts here
40
41 # Modify as appropriate.
42 _supported_fs xfs
43 _supported_os Linux
44
45 _require_scratch
46 _scratch_mkfs_xfs -i nfs4acl 1>$tmp.mkfs 2>$seq.full
47 if [ $? -ne 0 ]
48 then
49         _notrun "no mkfs support for NFS v4 ACLs"
50 fi
51
52 _scratch_mount 2>/dev/null
53 if [ $? -ne 0 ]
54 then
55         _notrun "no kernel mount support for NFS v4 ACLs"
56 fi
57
58 set_prog_path nfs4acl >>$seq.full
59 if [ $? -ne 0 ]
60 then
61         _notrun "no nfs4acl utility found"
62 fi
63
64 cd $SCRATCH_MNT
65 for file in $here/nfs4acl/*.test
66 do
67         print_file=`echo $file | sed 's/.*nfs4acl/nfs4acl/'`
68         echo ""
69         echo "*** $print_file ***"
70         echo ""
71         $here/nfs4acl/run $file
72 done
73
74 # success, all done
75 status=0
76 exit