blob: 1c17b82f399b8e48142a35ad25321f0c71d5f0d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#! /bin/bash
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
#
# FS QA Test No. 088
#
# test out CAP_DAC_OVERRIDE and CAP_DAC_SEARCH code in
# xfs_iaccess(ip,mode,cr)
#
seqfull=$0
. ./common/preamble
_begin_fstest perms auto quick
# Import common functions.
. ./common/filter
_filter()
{
_filter_test_dir | sed -e '/----------/d'
}
# real QA test starts here
_supported_fs generic
_require_test
_require_chown
path=$TEST_DIR/t_access
$here/src/t_access_root $path | tee $seqres.full | _filter
# success, all done
status=0
exit
|