]> Dogcows Code - chaz/tar/blob - tests/multiv01.at
Update FSF postal mail address.
[chaz/tar] / tests / multiv01.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2
3 # Test suite for GNU tar.
4 # Copyright (C) 2004 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 2, 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 # Test multivolume dumps from pipes.
22
23 AT_SETUP([multivolume dumps from pipes])
24 AT_KEYWORDS([multiv01])
25
26 # Fixme: should be configurable
27 # TRUSS=truss -o /tmp/tr
28 # TRUSS=strace
29
30 AT_TAR_CHECK([
31 genfile --length 7168 > file1
32
33 for block in " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" \
34 " 9" "10" "11" "12" "13" "14" "15" "16" ; do \
35 echo "file2 block ${block} bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla"
36 for count in 2 3 4 5 6 7 8 ; do
37 echo "bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla!bla"
38 done
39 done >file2
40
41 tar -c --multi-volume --tape-length=10 \
42 --listed-incremental=t.snar \
43 -f t1-pipe.tar -f t2-pipe.tar ./file1 ./file2 || exit 1
44
45 mkdir extract-dir-pipe
46 dd bs=4096 count=10 if=t2-pipe.tar 2>/dev/null |
47 PATH=$PATH ${TRUSS} tar -f t1-pipe.tar -f - \
48 -C extract-dir-pipe -x --multi-volume \
49 --tape-length=10 --read-full-records || exit 1
50
51 cmp file1 extract-dir-pipe/file1
52 cmp file2 extract-dir-pipe/file2
53 ],
54 [0],
55 [],[],[],[],[gnu, oldgnu])
56
57 AT_CLEANUP
58
59
This page took 0.042437 seconds and 5 git commands to generate.