From 0ea01c407bd2ee516437232699d775fd257faa2a Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 5 Jan 2012 17:55:00 -0600 Subject: [PATCH] t030[02]: work around CR/LF issue It is the old shell-script issue we had in a few other tests already. Signed-off-by: Johannes Schindelin --- t/lib-credential.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/lib-credential.sh b/t/lib-credential.sh index 957ae936e8..0c5ff70e19 100755 --- a/t/lib-credential.sh +++ b/t/lib-credential.sh @@ -19,6 +19,10 @@ check() { false fi && test_cmp expect-stdout stdout && + if test_have_prereq MINGW + then + dos2unix stderr + fi && test_cmp expect-stderr stderr }