This test passes with v1.5.3.7, but not with v1.5.3.6.
Signed-off-by: Jeff King <redacted>
Signed-off-by: Junio C Hamano <redacted>
'
+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