]> git.cworth.org Git - tar/blob - tests/pipe.at
upstream: Fix extraction of device nodes.
[tar] / tests / pipe.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2004, 2005, 2006, 2007, 2008,
5 # 2009 Free Software Foundation, Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 # Recognition of compressed formats, introduced with tar 1.15, broke
23 # untarring of archives from standard input.
24 # References:
25 # 1) <20041221040834.GA9635@tigers-lfs.nsw.bigpond.net.au>
26 #    http://lists.gnu.org/archive/html/bug-tar/2004-12/msg00031.html
27 # 2) <20041221093801.GA55537@engelschall.com>
28 #    http://lists.gnu.org/archive/html/bug-tar/2004-12/msg00026.html
29
30 AT_SETUP([decompressing from stdin])
31
32 AT_KEYWORDS([pipe])
33
34 AT_TAR_CHECK([
35 AT_SORT_PREREQ
36
37 mkdir directory
38 genfile --length 10240 --pattern zeros --file directory/file1
39 genfile --length 13 --file directory/file2
40 tar cf archive directory
41 mv directory orig
42 cat archive | tar xfv - --warning=no-timestamp | sort
43 echo "separator"
44 cmp orig/file1 directory/file1
45 echo "separator"
46 cmp orig/file2 directory/file2],
47 [0],
48 [directory/
49 directory/file1
50 directory/file2
51 separator
52 separator
53 ])
54
55 AT_CLEANUP