Support for POSIX ACLs
[tar.git] / tests / xattr02.at
blob3aae3f99adea37527880bc2c58e63d96807eecdc
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 # Cooperation of the '-C' option and storing/restoring extended attributes.
23 AT_SETUP([xattrs: change directory with -C option])
24 AT_KEYWORDS([xattrs xattr02])
26 AT_TAR_CHECK([
27 AT_XATTRS_PREREQ
29 mkdir dir
30 mkdir dir/subdir
31 mkdir dir/subdir/subsubdir
32 genfile --file dir/file1
33 genfile --file dir/subdir/file2
35 setfattr -n user.test -v OurFile1Value dir/file1
36 setfattr -n user.test -v OurFile2Value dir/subdir/file2
37 setfattr -n user.test -v OurDirValue   dir/subdir/subsubdir
39 tar --xattrs -cf archive.tar -C dir file1 -C subdir file2 subsubdir
41 rm -rf dir
43 tar --xattrs -xf archive.tar
45 getfattr -h -d file1        | grep -v -e '^#' -e ^$
46 getfattr -h -d file2        | grep -v -e '^#' -e ^$
47 getfattr -h -d subsubdir    | grep -v -e '^#' -e ^$
49 [0],
50 [user.test="OurFile1Value"
51 user.test="OurFile2Value"
52 user.test="OurDirValue"
55 AT_CLEANUP