* doc/tar.texi: Define reproducibility.
[tar.git] / tests / delete05.at
blobb54cb72dbad14d236e79be3061b01fe3b37cf91b
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2004-2023 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 # When attempted to delete a non-existing member, tar used to destroy
22 # last blocking_factor blocks.
23 # References:
24 #   <Pine.LNX.4.10.10412160956460.30933-100000@electra.znyx.com>
25 #   http://lists.gnu.org/archive/html/bug-tar/2004-12/msg00016.html
27 AT_SETUP([deleting non-existing member])
28 AT_KEYWORDS([delete delete05])
30 AT_TAR_CHECK([
31 genfile -l 1024 -f en
32 genfile -l 1024 -f to
34 tar cf archive en to
35 # Make sure we don't use bogus blocking factor.
36 # GNU tar up to and including 1.14.91 produced an empty archive this way:
37 tar --file archive --blocking-factor=20 --delete tre
38 tar tf archive
40 [0],
41 [en
44 [tar: tre: Not found in archive
45 tar: Exiting with failure status due to previous errors
48 AT_CLEANUP