1# Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3# Test suite for GNU tar.
4# Copyright (C) 2004, 2006 Free Software Foundation, Inc.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19# 02110-1301, USA.
20
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
26
27AT_SETUP([deleting non-existing member])
28AT_KEYWORDS([delete delete05])
29
30AT_TAR_CHECK([
31genfile -l 1024 -f en
32genfile -l 1024 -f to
33
34tar 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:
37tar --file archive --blocking-factor=20 --delete tre
38tar tf archive
39],
40[0],
41[en
42to
43],
44[tar: tre: Not found in archive
45tar: Error exit delayed from previous errors
46])
47
48AT_CLEANUP
49