* tests/test-dfa-invalid-char-class.sh: Transform CRLF to LF in the
output, before comparing with the expected output.
+2023-04-20 Bruno Haible <bruno@clisp.org>
+
+ dfa tests: Fix test failure on mingw.
+ * tests/test-dfa-invalid-char-class.sh: Transform CRLF to LF in the
+ output, before comparing with the expected output.
+
2023-04-20 Bruno Haible <bruno@clisp.org>
Fix uses of libwinpthread on mingw 10.
fail=0
echo 'dfaerror: invalid character class' > exp
-LC_ALL=C ${CHECKER} test-dfa-match-aux '[[:foo:]]' a > out 2>&1
+LC_ALL=C ${CHECKER} test-dfa-match-aux '[[:foo:]]' a > tmp 2>&1
+LC_ALL=C tr -d '\r' < tmp > out
compare exp out || fail=1
Exit $fail