]> Dogcows Code - chaz/tar/blob - tests/xattr02.at
Prepare for implementing extended attribute support.
[chaz/tar] / tests / xattr02.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 # Cooperation of the '-C' option and storing/restoring extended attributes.
22
23 AT_SETUP([xattrs: change directory with -C option])
24 AT_KEYWORDS([xattrs xattr02])
25
26 AT_TAR_CHECK([
27 AT_XATTRS_PREREQ
28
29 mkdir dir
30 mkdir dir/subdir
31 mkdir dir/subdir/subsubdir
32 genfile --file dir/file1
33 genfile --file dir/subdir/file2
34
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
38
39 tar --xattrs -cf archive.tar -C dir file1 -C subdir file2 subsubdir
40
41 rm -rf dir
42
43 tar --xattrs -xf archive.tar
44
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 ^$
48 ],
49 [0],
50 [user.test="OurFile1Value"
51 user.test="OurFile2Value"
52 user.test="OurDirValue"
53 ])
54
55 AT_CLEANUP
This page took 0.041707 seconds and 5 git commands to generate.