Skip to content

mingw: cvs-test-fixes #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions t/t9400-git-cvsserver-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ cvs CLI client via git-cvsserver server'

. ./test-lib.sh

if test_have_prereq MINGW
then
# Avoid posix-to-windows path mangling
pwd () {
builtin pwd
}
fi

if ! test_have_prereq PERL; then
skip_all='skipping git cvsserver tests, perl not available'
test_done
Expand Down
8 changes: 8 additions & 0 deletions t/t9401-git-cvsserver-crlf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ repository using cvs CLI client via git-cvsserver server'

. ./test-lib.sh

if test_have_prereq MINGW
then
# Avoid posix-to-windows path mangling
pwd () {
builtin pwd
}
fi

marked_as () {
foundEntry="$(grep "^/$2/" "$1/CVS/Entries")"
if [ x"$foundEntry" = x"" ] ; then
Expand Down
8 changes: 8 additions & 0 deletions t/t9402-git-cvsserver-refs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ tags, branches and other git refspecs'

. ./test-lib.sh

if test_have_prereq MINGW
then
# Avoid posix-to-windows path mangling
pwd () {
builtin pwd
}
fi

#########

check_start_tree() {
Expand Down