f9dda4
# This test is failing due to BZ#2066320 and BZ#1926332
f9dda4
# So we decided to remove it from testsuite
f9dda4
f9dda4
--- tar-1.30/tests/Makefile.am.old	2022-12-05 10:18:29.093200490 +0000
f9dda4
+++ tar-1.30/tests/Makefile.am	2022-12-05 10:18:47.058200490 +0000
f9dda4
@@ -261,8 +261,7 @@ TESTSUITE_AT = \
f9dda4
  acls02.at\
f9dda4
  acls03.at\
f9dda4
  selnx01.at\
f9dda4
- selacl01.at\
f9dda4
- capabs_raw01.at
f9dda4
+ selacl01.at
f9dda4
 
f9dda4
 distclean-local:
f9dda4
 	-rm -rf download
f9dda4
--- tar-1.30/tests/testsuite.at.old	2022-12-05 10:19:51.023200490 +0000
f9dda4
+++ tar-1.30/tests/testsuite.at	2022-12-05 10:20:19.418200490 +0000
f9dda4
@@ -469,8 +469,6 @@ m4_include([acls03.at])
f9dda4
 m4_include([selnx01.at])
f9dda4
 m4_include([selacl01.at])
f9dda4
 
f9dda4
-m4_include([capabs_raw01.at])
f9dda4
-
f9dda4
 AT_BANNER([One top level])
f9dda4
 m4_include([onetop01.at])
f9dda4
 m4_include([onetop02.at])
f9dda4
--- tar-1.30-test/tests/capabs_raw01.at	2017-01-02 12:43:50.000000000 +0000
f9dda4
+++ tar-1.30/tests/capabs_raw01.at	1970-01-01 00:00:00.000000000 +0000
f9dda4
@@ -1,53 +0,0 @@
f9dda4
-# Process this file with autom4te to create testsuite. -*- Autotest -*-
f9dda4
-#
f9dda4
-# Test suite for GNU tar.
f9dda4
-# Copyright 2012-2014, 2016-2017 Free Software Foundation, Inc.
f9dda4
-
f9dda4
-# This file is part of GNU tar.
f9dda4
-
f9dda4
-# GNU tar is free software; you can redistribute it and/or modify
f9dda4
-# it under the terms of the GNU General Public License as published by
f9dda4
-# the Free Software Foundation; either version 3 of the License, or
f9dda4
-# (at your option) any later version.
f9dda4
-
f9dda4
-# GNU tar is distributed in the hope that it will be useful,
f9dda4
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
f9dda4
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f9dda4
-# GNU General Public License for more details.
f9dda4
-
f9dda4
-# You should have received a copy of the GNU General Public License
f9dda4
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
f9dda4
-#
f9dda4
-# Test description:  Test if file capabilities are archived/restored correctly
f9dda4
-# using just the default xattr support (capabilities are stored/restored in
f9dda4
-# binary format -> system dependant).
f9dda4
-
f9dda4
-AT_SETUP([capabilities: binary store/restore])
f9dda4
-AT_KEYWORDS([xattrs capabilities capabs_raw01])
f9dda4
-
f9dda4
-AT_TAR_CHECK([
f9dda4
-AT_PRIVILEGED_PREREQ
f9dda4
-AT_XATTRS_PREREQ
f9dda4
-AT_CAPABILITIES_UTILS_PREREQ
f9dda4
-
f9dda4
-mkdir dir
f9dda4
-genfile --file dir/file
f9dda4
-
f9dda4
-setcap "= cap_chown=ei" dir/file
f9dda4
-
f9dda4
-# archive whole directory including binary xattrs
f9dda4
-tar --xattrs -cf archive.tar dir
f9dda4
-
f9dda4
-# clear the directory
f9dda4
-rm -rf dir
f9dda4
-
f9dda4
-# restore _all_ xattrs (not just the user.* domain)
f9dda4
-tar --xattrs --xattrs-include='*' -xf archive.tar
f9dda4
-
f9dda4
-getcap dir/file
f9dda4
-],
f9dda4
-[0],
f9dda4
-[dir/file = cap_chown+ei
f9dda4
-])
f9dda4
-
f9dda4
-AT_CLEANUP