]> Dogcows Code - chaz/tar/blob - tests/pipe.at
Update copyright years.
[chaz/tar] / tests / pipe.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright 2004-2009, 2013-2014 Free Software Foundation, Inc.
5
6 # This file is part of GNU tar.
7
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.
12
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.
17
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/>.
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
40 mv directory orig
41 cat archive | tar xfv - --warning=no-timestamp | 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
This page took 0.033383 seconds and 4 git commands to generate.