From bb837509198fbe3ca0c0f80ef849961a90444971 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 3c43ff11b3..8a2c7cc6ff 100755 --- a/t/lib-credential.sh +++ b/t/lib-credential.sh @@ -23,6 +23,10 @@ check() { dos2unix -q stderr fi && test_cmp expect-stdout stdout && + if test_have_prereq MINGW + then + dos2unix stderr + fi && test_cmp expect-stderr stderr }