summaryrefslogtreecommitdiff
path: root/tests/auto/xmlpatterns/tst_xmlpatterns.cpp
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-05-31 17:18:28 +0200
committerTimur Pocheptsov <timur.pocheptsov@theqtcompany.com>2016-06-01 09:38:25 +0000
commit6a05267b0679fa9de057dd2b8c66f228eef017fd (patch)
tree0b0ca1835967b36af39659b9c3800aae0a499fdb /tests/auto/xmlpatterns/tst_xmlpatterns.cpp
parent560597a219888d71314d8085cd1077709478d281 (diff)
downloadqtxmlpatterns-6a05267b0679fa9de057dd2b8c66f228eef017fd.tar.gz
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 <edward.welbourne@qt.io>
Diffstat (limited to 'tests/auto/xmlpatterns/tst_xmlpatterns.cpp')
-rw-r--r--tests/auto/xmlpatterns/tst_xmlpatterns.cpp1
1 files changed, 1 insertions, 0 deletions
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;