From 6a05267b0679fa9de057dd2b8c66f228eef017fd Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Tue, 31 May 2016 17:18:28 +0200 Subject: tst_XmlPatterns::filterStderr - extend the filter Recent change in network/ssl (namely QSslDiffieHellmanParameters) resulted in 'Unimplemented code.' warning message from default (non-OpenSSL) version (Q_UNIMPLEMENTED there). This makes the test fail. Since Q_UNIMPLEMENTED is not suppressable by logging category trick, extend the already existing filter instead. Change-Id: I6963731dfa7bb74002f9e44e711a6dfb61578cd7 Reviewed-by: Edward Welbourne --- tests/auto/xmlpatterns/tst_xmlpatterns.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/xmlpatterns/tst_xmlpatterns.cpp b/tests/auto/xmlpatterns/tst_xmlpatterns.cpp index 71150e1..1a08a66 100644 --- a/tests/auto/xmlpatterns/tst_xmlpatterns.cpp +++ b/tests/auto/xmlpatterns/tst_xmlpatterns.cpp @@ -1036,6 +1036,7 @@ QString tst_XmlPatterns::filterStderr(const QString &in) // warning messages about old-style plugins << QRegExp(QLatin1String("Old plugin format found in lib [^\n]+\n")) << QRegExp(QLatin1String("Qt plugin loader: Compatibility plugin [^\n]+\n")) + << QRegExp(QLatin1String("Unimplemented code.\n")) ; QString out = in; -- cgit v1.2.1