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 <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2012-01-05 17:55:00 -06:00
parent a6f77912b4
commit 0ffccd925e

View File

@@ -9,6 +9,10 @@ check() {
read_chunk >expect-stderr &&
test-credential "$@" <stdin >stdout 2>stderr &&
test_cmp expect-stdout stdout &&
if test_have_prereq MINGW
then
dos2unix stderr
fi &&
test_cmp expect-stderr stderr
}