Fix description of the CACHEDIR.TAG file.
[tar.git] / tests / delete01.at
blobee34cfea2239705b8228e2b829b5a22833690721
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
3 # Test suite for GNU tar.
4 # Copyright 2004-2024 Free Software Foundation, Inc.
6 # This file is part of GNU tar.
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.
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.
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/>.
21 # Deleting a member after a big one was destroying the archive.
23 AT_SETUP([deleting a member after a big one])
24 AT_KEYWORDS([delete delete01])
26 AT_TAR_CHECK([
27 genfile -l 50000 --file file1
28 genfile -l 1024 --file file2
29 tar cf archive file1 file2
30 tar -f - --delete file2 <archive >archout
31 tar tf archout
32 tar f archive --delete file2
33 cmp archive archout],
34 [0],
35 [file1
38 AT_CLEANUP