Version 1.31
[tar.git] / tests / T-null2.at
blob4f71f290be755209b87059f328f0d9478401f9fc
1 # This file is part of test suite for GNU tar. -*- Autotest -*-
2 # Copyright 2015-2019 Free Software Foundation, Inc.
4 # GNU tar is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # GNU tar is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 AT_SETUP([--null enables verbatim reading])
18 AT_KEYWORDS([files-from null T-null2 T-verbatim])
20 # According to the docs, --null should read each line from the file
21 # list verbatim.  This feature was broken by commit 26538c9b (tar version
22 # 1.27).
24 AT_TAR_CHECK([
25 AT_DATA([file-list],[a
27 --c d
28 :\\.jpg
31 genfile -f a
32 genfile -f -b
33 genfile -f '--c d'
34 genfile -f ':\\.jpg'
36 cat file-list | tr '\n' '\0' | tar -c -f archive -v --null -T -
38 [0],
41 --c d
42 :\\\\.jpg
44 [],[],[],[ustar]) # Testing one format is enough
46 AT_CLEANUP