From 4e596e988abfd7ce0b4456cdbf27baa16fa7aab8 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sun, 2 Dec 2007 12:22:19 -0500 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- t/t9600-cvsimport.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/t/t9600-cvsimport.sh b/t/t9600-cvsimport.sh index 29fee2dd13..08f0f2a3a3 100755 --- a/t/t9600-cvsimport.sh +++ b/t/t9600-cvsimport.sh @@ -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 -- 2.11.4.GIT