Support for POSIX ACLs
[tar.git] / tests / acls01.at
blob0149f2de47ba17fe6ef29eb1ebe96fec8d473298
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: basic functionality])
24 AT_KEYWORDS([xattrs acls acls01])
26 AT_TAR_CHECK([
27 AT_XATTRS_UTILS_PREREQ
28 AT_ACLS_PREREQ
30 mkdir dir
31 genfile --file dir/file
33 MYNAME=$( id -un )
35 setfacl -m u:$MYNAME:--x dir/file
36 setfacl -m u:$MYNAME:--x dir
38 getfattr -h -m. -d dir dir/file > before
40 tar --acls -cf archive.tar dir
41 rm -rf dir
43 tar --acls -xf archive.tar
45 getfattr -h -m. -d dir dir/file > after
47 diff before after
48 test "$?" = 0
50 [0],
51 [])
53 AT_CLEANUP