From 4e6eaeb16ba5b4749956046a9fdcb1e452c80c79 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 4a37cd79e5..66dc4fd6c9 100755 --- a/t/lib-credential.sh +++ b/t/lib-credential.sh @@ -9,6 +9,10 @@ check() { read_chunk >expect-stderr && test-credential "$@" stdout 2>stderr && test_cmp expect-stdout stdout && + if test_have_prereq MINGW + then + dos2unix stderr + fi && test_cmp expect-stderr stderr } -- 2.11.4.GIT