]> git.cworth.org Git - tar/blob - tests/exclude05.at
upstream: Fix extraction of device nodes.
[tar] / tests / exclude05.at
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Copyright (C) 2009, 2010 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Test the functioning of many items in an exclude list (should run quickly)
18
19 AT_SETUP([exclude: lots of excludes])
20 AT_KEYWORDS([exclude exclude05])
21
22 AT_TAR_CHECK([
23 AT_SORT_PREREQ
24
25 rm -rf testdir exclfile
26 mkdir -p testdir
27 awk 'BEGIN {for (i=9; i < 100; ++i ) { print "testdir/file" i; }}' < /dev/null | \
28  while read name
29  do
30    genfile --file $name
31  done
32
33 awk 'BEGIN {for (i=1000000; i >= 12; --i ) { print "testdir/file" i }}' < /dev/null > exclfile
34
35 tar cf archive --anchored --exclude-from=exclfile \
36                testdir
37 tar tf archive | sort
38
39 echo "NEXT"
40 tar cf archive --exclude-from=exclfile \
41                testdir
42 tar tf archive | sort
43
44 rm -rf testdir exclfile
45
46 ],
47 [0],
48 [testdir/
49 testdir/file10
50 testdir/file11
51 testdir/file9
52 NEXT
53 testdir/
54 testdir/file10
55 testdir/file11
56 testdir/file9
57 ])
58
59 AT_CLEANUP