Sven Verdoolaege <skimo@xxxxxxxxxx> writes: > On Wed, May 09, 2007 at 08:22:42AM -0700, Junio C Hamano wrote: >> Can you retry after installing libdbi and libdbd-sqlite-perl? > > I'd rather spend my (limited) time on the submodules thing. Heh, everybody wants to futz with new things ;-) > Shouldn't these tests be skipped if I don't have all that stuff installed? > There doesn't even seem to be an option to turn off these tests. I agree. We would need something like this, but I have no easy way to test it myself, short of uninstalling what I need on the box. As you do not have them, maybe you can give it a quick whirl? Thanks. --- diff --git a/t/t9400-git-cvsserver-server.sh b/t/t9400-git-cvsserver-server.sh index f17be6b..98d6bb4 100755 --- a/t/t9400-git-cvsserver-server.sh +++ b/t/t9400-git-cvsserver-server.sh @@ -17,6 +17,11 @@ then test_done exit fi +perl -e 'use DBI; use DBD::SQLite' 2>&1 || { + test_expect_success 'skipping git-cvsserver tests, Perl SQLite interface unavailable' : + test_done + exit +} unset GIT_DIR GIT_CONFIG WORKDIR=$(pwd) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html