Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'maint'
author
Junio C Hamano
<gitster@pobox.com>
Sun, 2 Dec 2007 19:00:45 +0000
(11:00 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 2 Dec 2007 19:00:45 +0000
(11:00 -0800)
* maint:
t9600: test cvsimport from CVS working tree
t/t9600-cvsimport.sh
patch
|
blob
|
history
raw
(from parent 1:
1c46ab1
)
diff --git
a/t/t9600-cvsimport.sh
b/t/t9600-cvsimport.sh
index 29fee2dd13c6826338e92bf6e61cc39b057da444..08f0f2a3a34d4d5e3bf45216f5d824854894f2f1 100755
(executable)
--- 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