Sync bootstrap from Gnulib
[tar.git] / tests / xattr06.at
blob8b0997f38da932037597f81e5b9846064053fb34
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2012-2024 Free Software Foundation, Inc.
6 # This file is part of GNU tar.
8 # GNU tar is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU tar is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 # Test description:  Test for exclude of xattr during archive creation
23 # Relevant mailing list thread:
25 # http://lists.gnu.org/archive/html/bug-tar/2016-05/msg00031.html
27 AT_SETUP([xattrs: exclude xattrs on create ])
28 AT_KEYWORDS([xattrs xattr06])
30 AT_TAR_CHECK([
31 AT_XATTRS_PREREQ
33 mkdir dir
34 mkdir output
35 genfile --file dir/file
37 for attr in excluded incla inclb inclc incl_excluded
39   setfattr -n user.${attr} -v value dir/file || AT_SKIP_TEST
40 done
42 tar --xattrs-include=user.incl'*' --xattrs-exclude=user.incl_excluded -cf archive.tar -C dir .
43 tar -xf archive.tar --xattrs-include=user.incl[[ab]] --xattrs-exclude=user.inclb -C output
45 getfattr -d output/file | grep -v \
46     -e excluded \
47     -e inclb \
48     -e inclc > filtered
49 getfattr -d output/file > full
50 # if they differ then the attribute is still present
51 diff filtered full
53 [0],
54 [])
56 AT_CLEANUP