]> Dogcows Code - chaz/tar/blob - tests/delete05.at
Update copyright years.
[chaz/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 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 # 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
27 AT_SETUP([deleting non-existing member])
28 AT_KEYWORDS([delete delete05])
29
30 AT_TAR_CHECK([
31 genfile -l 1024 -f en
32 genfile -l 1024 -f to
33
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
39 ],
40 [0],
41 [en
42 to
43 ],
44 [tar: tre: Not found in archive
45 tar: Exiting with failure status due to previous errors
46 ])
47
48 AT_CLEANUP
This page took 0.032462 seconds and 4 git commands to generate.