From: Junio C Hamano Date: Tue, 25 Dec 2012 01:09:49 +0000 (-0800) Subject: t9200: let "cvs init" create the test repository X-Git-Tag: v1.8.1.1~45^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8666df02dae889105b2d54aa08795aea1fbfa8c7;p=git-core%2Fgit.git t9200: let "cvs init" create the test repository Some platforms (e.g. NetBSD 6.0) seem to configure their CVS to allow "cvs init" in an existing directory only to members of "cvsadmin". Instead of preparing an empty directory and then running "cvs init" on it, let's run "cvs init" and let it create the necessary directory. Signed-off-by: Junio C Hamano --- diff --git a/t/t9200-git-cvsexportcommit.sh b/t/t9200-git-cvsexportcommit.sh index b59be9a89..c5368a38c 100755 --- a/t/t9200-git-cvsexportcommit.sh +++ b/t/t9200-git-cvsexportcommit.sh @@ -25,8 +25,9 @@ GIT_DIR=$PWD/.git export CVSROOT CVSWORK GIT_DIR rm -rf "$CVSROOT" "$CVSWORK" -mkdir "$CVSROOT" && + cvs init && +test -d "$CVSROOT" && cvs -Q co -d "$CVSWORK" . && echo >empty && git add empty &&