1
0
mirror of https://github.com/git/git.git synced 2024-09-28 04:10:41 +02:00

t9400: skip cvsserver test if Perl SQLite interface is unavailable

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2007-05-09 09:19:42 -07:00
parent fba23c87fd
commit 469be5b258

View File

@ -17,6 +17,11 @@ then
test_done
exit
fi
perl -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || {
test_expect_success 'skipping git-cvsserver tests, Perl SQLite interface unavailable' :
test_done
exit
}
unset GIT_DIR GIT_CONFIG
WORKDIR=$(pwd)