X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=tests%2Ftruncate.at;h=3d2e6702f20599b1898dd51f81ff794a78fce7ee;hb=89a91c7b440ae92d1cfda33ec391a255573b3814;hp=561d103e32d72181a594b2cc15c1b57a34939be9;hpb=57c2124d68aa65843548feef9d226fb025503258;p=chaz%2Ftar diff --git a/tests/truncate.at b/tests/truncate.at index 561d103..3d2e670 100644 --- a/tests/truncate.at +++ b/tests/truncate.at @@ -24,28 +24,30 @@ # http://lists.gnu.org/archive/html/bug-tar/2005-05/msg00008.html # # The test case is based on the script by Frank Heckenbach +# Additionally, the test verifies if tar exits with code 1 (file differs). AT_SETUP([truncate]) -AT_KEYWORDS([truncated files]) +AT_KEYWORDS([truncate filechange]) AT_TAR_CHECK([ genfile --file foo --length 50000k genfile --file baz genfile --run 'tar -vcf bar foo baz' --checkpoint 10 --length 49995k --truncate foo +echo Exit status: $? echo separator sleep 1 -dd if=/dev/zero of=foo bs=1k seek=49995 count=5 >/dev/null 2>&1 +genfile --file foo --seek 49995k --length 5k --pattern=zeros tar dvf bar], [1], [foo baz +Exit status: 1 separator foo foo: Mod time differs baz ], [tar: foo: File shrank by 5120 bytes; padding with zeros -tar: Error exit delayed from previous errors ]) AT_CLEANUP