t9600: test cvsimport from CVS working tree

This test passes with v1.5.3.7, but not with v1.5.3.6.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2007-12-02 12:22:19 -05:00 committed by Junio C Hamano
parent 1d557352f1
commit 4e596e988a

View File

@ -119,4 +119,16 @@ test_expect_success 'cvsimport.module config works' '
'
test_expect_success 'import from a CVS working tree' '
cvs co -d import-from-wt module &&
cd import-from-wt &&
git cvsimport -a -z0 &&
echo 1 >expect &&
git log -1 --pretty=format:%s%n >actual &&
git diff actual expect &&
cd ..
'
test_done