]> Dogcows Code - chaz/tar/blob - tests/acls01.at
Support for POSIX ACLs
[chaz/tar] / tests / acls01.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 #
3 # Test suite for GNU tar.
4 # Copyright (C) 2011 Free Software Foundation, Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3, or (at your option)
9 # any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Test description:
20 #
21 # This is basic test for acl support.
22
23 AT_SETUP([acls: basic functionality])
24 AT_KEYWORDS([xattrs acls acls01])
25
26 AT_TAR_CHECK([
27 AT_XATTRS_UTILS_PREREQ
28 AT_ACLS_PREREQ
29
30 mkdir dir
31 genfile --file dir/file
32
33 MYNAME=$( id -un )
34
35 setfacl -m u:$MYNAME:--x dir/file
36 setfacl -m u:$MYNAME:--x dir
37
38 getfattr -h -m. -d dir dir/file > before
39
40 tar --acls -cf archive.tar dir
41 rm -rf dir
42
43 tar --acls -xf archive.tar
44
45 getfattr -h -m. -d dir dir/file > after
46
47 diff before after
48 test "$?" = 0
49 ],
50 [0],
51 [])
52
53 AT_CLEANUP
This page took 0.036063 seconds and 4 git commands to generate.