summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 89a9167)
raw | patch | inline | side by side (parent: 89a9167)
author | Fabian Emmes <fabian.emmes@rwth-aachen.de> | |
Thu, 17 Jul 2008 17:00:30 +0000 (19:00 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 19 Jul 2008 18:17:43 +0000 (11:17 -0700) |
Check that all branches are displayed.
Signed-off-by: Fabian Emmes <fabian.emmes@rwth-aachen.de>
Signed-off-by: Lars Noschinski <lars@public.noschinski.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Fabian Emmes <fabian.emmes@rwth-aachen.de>
Signed-off-by: Lars Noschinski <lars@public.noschinski.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9400-git-cvsserver-server.sh | patch | blob | history |
index e97aaa6c2a2fdcc476e538ffe903cef65274c280..d49f0df8c45c4ad258d22f560919ba230b5d3350 100755 (executable)
! grep / <../out
'
+#------------
+# CVS CHECKOUT
+#------------
+
+cd "$WORKDIR"
+test_expect_success 'cvs co -c (shows module database)' '
+ GIT_CONFIG="$git_config" cvs co -c > out &&
+ grep "^master[ ]\+master$" < out &&
+ ! grep -v "^master[ ]\+master$" < out
+'
+
test_done