1# Process this file with autom4te to create testsuite. -*- Autotest -*- 2# 3# Test suite for GNU tar. 4# Copyright 2012-2021 Free Software Foundation, Inc. 5 6# This file is part of GNU tar. 7 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. 12 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. 17 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/>. 20# 21# Test description: Test for exclude of xattr during archive creation 22# 23# Relevant mailing list thread: 24# 25# http://lists.gnu.org/archive/html/bug-tar/2016-05/msg00031.html 26 27AT_SETUP([xattrs: exclude xattrs on create ]) 28AT_KEYWORDS([xattrs xattr06]) 29 30AT_TAR_CHECK([ 31AT_XATTRS_PREREQ 32 33mkdir dir 34mkdir output 35genfile --file dir/file 36 37for attr in excluded incla inclb inclc incl_excluded 38do 39 setfattr -n user.${attr} -v value dir/file || AT_SKIP_TEST 40done 41 42tar --xattrs-include=user.incl'*' --xattrs-exclude=user.incl_excluded -cf archive.tar -C dir . 43tar -xf archive.tar --xattrs-include=user.incl[[ab]] --xattrs-exclude=user.inclb -C output 44 45getfattr -d output/file | grep -v \ 46 -e excluded \ 47 -e inclb \ 48 -e inclc > filtered 49getfattr -d output/file > full 50# if they differ then the attribute is still present 51diff filtered full 52], 53[0], 54[]) 55 56AT_CLEANUP 57