re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / tests / delete05.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2004, 2006-2007, 2013-2014, 2016 Free Software Foundation,
5 # Inc.
6
7 # This file is part of GNU tar.
8
9 # GNU tar is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU tar is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
22 # When attempted to delete a non-existing member, tar used to destroy
23 # last blocking_factor blocks.
24 # References:
25 #   <Pine.LNX.4.10.10412160956460.30933-100000@electra.znyx.com>
26 #   http://lists.gnu.org/archive/html/bug-tar/2004-12/msg00016.html
27
28 AT_SETUP([deleting non-existing member])
29 AT_KEYWORDS([delete delete05])
30
31 AT_TAR_CHECK([
32 genfile -l 1024 -f en
33 genfile -l 1024 -f to
34
35 tar cf archive en to
36 # Make sure we don't use bogus blocking factor.
37 # GNU tar up to and including 1.14.91 produced an empty archive this way:
38 tar --file archive --blocking-factor=20 --delete tre
39 tar tf archive
40 ],
41 [0],
42 [en
43 to
44 ],
45 [tar: tre: Not found in archive
46 tar: Exiting with failure status due to previous errors
47 ])
48
49 AT_CLEANUP