]> Dogcows Code - chaz/tar/blob - tests/incr09.at
Revamp tar_getcwd/normalize_filename stuff.
[chaz/tar] / tests / incr09.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2013 Free Software Foundation, Inc.
4 #
5 # GNU tar is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # GNU tar is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 AT_SETUP([incremental with alternating -C])
19 AT_KEYWORDS([incremental create incr09])
20
21 AT_TAR_CHECK([
22 AT_SORT_PREREQ
23 mkdir foo bar middle
24 echo foo/foo_file > foo/foo_file
25 echo bar/bar_file > bar/bar_file
26 echo middle/file > middle/middle_file
27 decho A
28 tar -cvf foo.tar --incremental -C foo . -C `pwd` middle -C bar .
29
30 rm foo.tar
31 >toplevel_file
32 decho B
33 tar -cvf foo.tar --incremental -C foo . -C `pwd` toplevel_file -C bar .
34 ],
35 [0],
36 [A
37 ./
38 ./
39 middle/
40 ./bar_file
41 ./foo_file
42 middle/middle_file
43 B
44 ./
45 ./
46 toplevel_file
47 ./bar_file
48 ./foo_file
49 ],
50 [A
51 tar: .: Directory is new
52 tar: middle: Directory is new
53 tar: .: Directory is new
54 B
55 tar: .: Directory is new
56 tar: .: Directory is new
57 ],[],[],[gnu])
58
59 AT_CLEANUP
This page took 0.032444 seconds and 4 git commands to generate.