From ebb53004af541eca5364f0a9ecf6587cb4e301d2 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Wed, 1 Jun 2011 15:00:39 +0200 Subject: [PATCH] fixup! Work around funny CR issue --- t/t7407-submodule-foreach.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 761337ebd9..72a4fdebd2 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -77,6 +77,10 @@ test_expect_success 'test basic "submodule foreach" usage' ' git config foo.bar zar && git submodule foreach "git config --file \"\$toplevel/.git/config\" foo.bar" ) && + if test_have_prereq MINGW + then + dos2unix actual + fi && test_i18ncmp expect actual ' @@ -158,6 +162,10 @@ test_expect_success 'test messages from "foreach --recursive"' ' cd clone2 && git submodule foreach --recursive "true" > ../actual ) && + if test_have_prereq MINGW + then + dos2unix actual + fi && test_i18ncmp expect actual '