X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=tests%2Frename01.at;fp=tests%2Frename01.at;h=c992da816ae520566ae5acbde4d5228ac75f6f8f;hb=71f2e412aecce6b958186b6bbcd2b8278e4d8997;hp=0000000000000000000000000000000000000000;hpb=67877f7de264b23f58eb3578e6a189148aab658e;p=chaz%2Ftar diff --git a/tests/rename01.at b/tests/rename01.at new file mode 100644 index 0000000..c992da8 --- /dev/null +++ b/tests/rename01.at @@ -0,0 +1,87 @@ +# Process this file with autom4te to create testsuite. -*- Autotest -*- + +# Test suite for GNU tar. +# Copyright (C) 2006 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. + +# Description: Test basic handling of renamed directory in the incremental +# archives. + +AT_SETUP([renamed dirs in incrementals]) +AT_KEYWORDS([incremental rename rename01]) + +AT_TAR_CHECK([ +mkdir foo +genfile --file foo/file1 +genfile --file foo/file2 +mkdir foo/bar +genfile --file foo/bar/file + +echo "Creating base archive" +tar -g incr -cf arch.1 -v foo + +mv foo/bar foo/baz + +echo "Creating incremental archive" +tar -g incr -cf arch.2 -v foo + +mv foo old + +tar xfg arch.1 /dev/null + +echo "Begin directory listing 1" +find foo | sort +echo "End directory listing 1" + +tar xfg arch.2 /dev/null +echo Begin directory listing 2 +find foo | sort +echo End directory listing 2 +], +[0], +[Creating base archive +foo/ +foo/bar/ +foo/file1 +foo/file2 +foo/bar/file +Creating incremental archive +foo/ +foo/baz/ +Begin directory listing 1 +foo +foo/bar +foo/bar/file +foo/file1 +foo/file2 +End directory listing 1 +Begin directory listing 2 +foo +foo/baz +foo/baz/file +foo/file1 +foo/file2 +End directory listing 2 +], +[tar: foo/bar: Directory is new +tar: foo/baz: Directory has been renamed from `foo/bar' +], +[],[],[gnu, oldgnu, posix]) + +AT_CLEANUP + +# End of rename01.at