From 165ed19bef7f6035655d625decbe62e00915a98d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 24 Sep 2018 10:24:41 +0200 Subject: [PATCH] Qt 5.12: Ignore new warnings from in_progress_cache_impl.cc Fixes #4247 --- tests/end2end/fixtures/quteprocess.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index f5502c26f..7142a8896 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -218,6 +218,12 @@ def is_ignored_chromium_message(line): # gpu_process_transport_factory.cc(1019)] Lost UI shared context. 'Lost UI shared context.', + # Qt 5.12 + # WORKAROUND for https://bugreports.qt.io/browse/QTBUG-70702 + # [32123:32123:0923/224739.457307:ERROR:in_progress_cache_impl.cc(192)] + # Cache is not initialized, cannot RetrieveEntry. + 'Cache is not initialized, cannot RetrieveEntry.', + 'Cache is not initialized, cannot AddOrReplaceEntry.', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)