Fewer macros in xheader.c
[tar.git] / tests / T-nonl.at
blob1c62bd03d5a528a31217400159360fad83d7404d
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2013-2024 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 # Tar malfunctioned when given a file list with the last line not ending
22 # in a newline.
24 # Reported by: Michal Žejdl <zejdl@suas.cz>
25 # References: <http://lists.gnu.org/archive/html/bug-tar/2013-07/msg00009.html>
27 AT_SETUP([entries with missing newlines])
28 AT_KEYWORDS([files-from nonewline nonl T-nonl])
30 AT_TAR_CHECK([
31 genfile --length=0 --file empty
32 printf c > 1.nonl
33 printf 'd\ne' > 2.nonl
34 touch a b c d e
35 AT_DATA([filelist],[a
39 tar cf archive -T empty -T 1.nonl -T 2.nonl -T filelist
40 tar tf archive
41 echo ==
42 tar cf archive -T 2.nonl -T empty -T filelist -T 1.nonl
43 tar tf archive
45 [0],
58 [],[],[],[ustar])
60 AT_CLEANUP