Fix the difflink test
[tar.git] / tests / delete04.at
blob73bdbc31beb3b1b8a33cec2b26dbbfd7f7808517
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2004, 2006-2007, 2013-2014, 2016-2017 Free Software
5 # Foundation, Inc.
7 # This file is part of GNU tar.
9 # GNU tar is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # GNU tar is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 # Deleting a large last member was destroying earlier members.
24 AT_SETUP([deleting a large last member])
25 AT_KEYWORDS([delete delete04])
27 AT_TAR_CHECK([
28 genfile -l      3 -f file1
29 genfile -l      5 -f file2
30 genfile -l      3 -f file3
31 genfile -l      6 -f file4
32 genfile -l     24 -f file5
33 genfile -l     13 -f file6
34 genfile -l   1385 -f file7
35 genfile -l     30 -f file8
36 genfile -l     10 -f file9
37 genfile -l 256000 -f file10
38 tar cf archive file1 file2 file3 file4 file5 file6 file7 file8 file9 file10
39 tar f archive --delete file10
40 tar tf archive
42 [0],
43 [file1
44 file2
45 file3
46 file4
47 file5
48 file6
49 file7
50 file8
51 file9
54 AT_CLEANUP