Fewer macros in xheader.c
[tar.git] / tests / options03.at
blobacb3356ea6e4e07d11d8d50c86035c1620c42ced
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2016-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 AT_SETUP([TAR_OPTIONS with string arguments])
22 AT_KEYWORDS([options options03])
24 # Check whether string values are passed correctly through the
25 # TAR_OPTIONS environment variable.  In tar 1.29 the stored values
26 # were inadvertenlty freedm which caused TAR_OPTION to malfunction.
27 # Reported by: Jan Larres <jan@majutsushi.net>
28 # References: <20160906072153.c75tga556ti5sgk2@majutsushi.net>,
29 #             http://lists.gnu.org/archive/html/bug-tar/2016-09/msg00005.html
31 AT_CHECK([
32 echo dir/bar > exclude.list
33 mkdir dir
34 genfile --file=dir/foo
35 genfile --file=dir/bar
36 TAR_OPTIONS=--exclude-from=exclude.list tar cf arc.tar dir
37 tar tf arc.tar
39 [0],
40 [dir/
41 dir/foo
44 AT_CLEANUP