Support for POSIX ACLs
[tar.git] / tests / acls02.at
blob2ee1c5fc8adfc62bea435a45ee5f80ccbca7d179
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright (C) 2011 Free Software Foundation, Inc.
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.
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.
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/>.
19 # Test description:
21 # This is basic test for acl support.
23 AT_SETUP([acls: work with -C])
24 AT_KEYWORDS([xattrs acls acls02])
26 AT_TAR_CHECK([
27 AT_XATTRS_UTILS_PREREQ
28 AT_ACLS_PREREQ
30 mkdir dir
31 mkdir dir/subdir
32 genfile --file dir/subdir/file
34 MYNAME=$( id -un )
36 setfacl -m u:$MYNAME:--x dir/subdir
37 setfacl -m u:$MYNAME:--x dir/subdir/file
39 cd dir
40 getfattr -h -m. -d subdir subdir/file > ../before
41 cd ..
43 tar --acls -cf archive.tar -C dir subdir
44 rm -rf dir
46 mkdir dir
47 tar --acls -xf archive.tar -C dir
49 cd dir
50 getfattr -h -m. -d subdir subdir/file > ../after
51 cd ..
53 diff before after
54 test "$?" = 0
56 [0],
57 [])
59 AT_CLEANUP