summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-08-29 14:50:24 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-08-29 14:50:24 -0700
commit7bcb7473bb14943e172d3dc1dcbf42872b654cba (patch)
tree4efa6f0c03dc43078b635202fbcd3eb275748ffe /t
parentMerge branch 'hv/submodule-path-unmatch' (diff)
parentcontrib: add win32 credential-helper (diff)
downloadtgif-7bcb7473bb14943e172d3dc1dcbf42872b654cba.tar.xz
Merge branch 'ef/win32-cred-helper'
Credential helper for Win32 to allow access to the keychain of the logged-in user. * ef/win32-cred-helper: contrib: add win32 credential-helper
Diffstat (limited to 't')
-rwxr-xr-xt/lib-credential.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/lib-credential.sh b/t/lib-credential.sh
index 957ae936e8..3c43ff11b3 100755
--- a/t/lib-credential.sh
+++ b/t/lib-credential.sh
@@ -18,6 +18,10 @@ check() {
cat stderr &&
false
fi &&
+ if test_have_prereq MINGW
+ then
+ dos2unix -q stderr
+ fi &&
test_cmp expect-stdout stdout &&
test_cmp expect-stderr stderr
}