From: Paul Eggert Date: Fri, 22 Nov 1996 19:22:53 +0000 (+0000) Subject: Initial revision X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=9ef42b4fc0cb471531b8c8e07652b62fdb5e3c85;hp=d7010d945a8b0214a9c9e55b01ab1cd84b2264d8;p=chaz%2Ftar Initial revision --- diff --git a/tests/append.sh b/tests/append.sh new file mode 100755 index 0000000..af90f04 --- /dev/null +++ b/tests/append.sh @@ -0,0 +1,19 @@ +#! /bin/sh +# Append was just not working. + +. ./preset +. $srcdir/before + +set -e +touch file1 +touch file2 +tar cf archive file1 +tar rf archive file2 +tar tf archive + +out="\ +file1 +file2 +" + +. $srcdir/after