From 21df4d30643a3867aa0875efc82d5301798941ca Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sat, 9 Sep 2017 18:56:26 +0200 Subject: [PATCH] coverage.sh: Support XML_UNICODE_WCHAR_T with MinGW --- expat/coverage.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/expat/coverage.sh b/expat/coverage.sh index 48f9306c..20dc9e36 100755 --- a/expat/coverage.sh +++ b/expat/coverage.sh @@ -206,7 +206,11 @@ _main() { with_unsigned_char=false with_libbsd=false for with_mingw in true false ; do - for unicode_enabled in false ; do + for unicode_enabled in true false ; do + if ${unicode_enabled} && ! ${with_mingw} ; then + continue + fi + for xml_context in 0 1024 ; do _build_case done -- 2.40.0