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