]> Dogcows Code - chaz/tar/blob - tests/append01.at
Update copyright years.
[chaz/tar] / tests / append01.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2005-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 decoding a header tar was assigning 0 to oldgnu_header.isextended,
22 # which destroyed name prefix. When updating archive, modified prefix
23 # could have been written to disk thus producing invalid archive member.
24 # Reported by Adye, TJ (Tim), <T.J.Adye@rl.ac.uk>
25 # References:
26 # <7231C15EAC2F164CA6DC326D97493C8B36C25D@exchange35.fed.cclrc.ac.uk>
27 # http://lists.gnu.org/archive/html/bug-tar/2005-02/msg00032.html
28
29 AT_SETUP([appending files with long names])
30 AT_KEYWORDS([append append01])
31
32 m4_pushdef([PREFIX],[This_is_a_very_long_file_name_prefix_that_is_designed_to_cause_problems_with_appending_long_file_names_that_run_into_a_limit_of_the_ustar_tarX])
33
34 AT_TAR_CHECK([
35 mkdir PREFIX
36 touch PREFIX/file1 PREFIX/file2
37 tar cf archive PREFIX/file1
38 tar rf archive PREFIX/file2
39 tar tf archive
40 ],
41 [0],
42 [PREFIX/file1
43 PREFIX/file2
44 ],
45 [],[],[],[oldgnu, ustar, posix, gnu])
46
47 m4_popdef([PREFIX])
48 AT_CLEANUP
This page took 0.035806 seconds and 4 git commands to generate.