]> Dogcows Code - chaz/tar/blob - tests/acls02.at
Support for POSIX ACLs
[chaz/tar] / tests / acls02.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: work with -C])
24 AT_KEYWORDS([xattrs acls acls02])
25
26 AT_TAR_CHECK([
27 AT_XATTRS_UTILS_PREREQ
28 AT_ACLS_PREREQ
29
30 mkdir dir
31 mkdir dir/subdir
32 genfile --file dir/subdir/file
33
34 MYNAME=$( id -un )
35
36 setfacl -m u:$MYNAME:--x dir/subdir
37 setfacl -m u:$MYNAME:--x dir/subdir/file
38
39 cd dir
40 getfattr -h -m. -d subdir subdir/file > ../before
41 cd ..
42
43 tar --acls -cf archive.tar -C dir subdir
44 rm -rf dir
45
46 mkdir dir
47 tar --acls -xf archive.tar -C dir
48
49 cd dir
50 getfattr -h -m. -d subdir subdir/file > ../after
51 cd ..
52
53 diff before after
54 test "$?" = 0
55 ],
56 [0],
57 [])
58
59 AT_CLEANUP
This page took 0.03725 seconds and 5 git commands to generate.