From a45cfb89cb49f906cc72032c7a737b0b255c3bcb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 25 Mar 2024 22:39:35 +0100 Subject: tests: Add new ignored error messages --- pytest.ini | 2 ++ tests/end2end/fixtures/quteprocess.py | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/pytest.ini b/pytest.ini index 5c4c2095a..883e6d936 100644 --- a/pytest.ini +++ b/pytest.ini @@ -64,6 +64,8 @@ qt_log_ignore = # Seen in Qt 6.6.2 on CI, https://github.com/qutebrowser/qutebrowser/pull/8106#issuecomment-1952320663 ^QDBusConnection: couldn't handle call to Notify, no slot matched ^QDBusConnection: couldn't handle call to CloseNotification, no slot matched + # Qt 6.7 + ^Path override failed for key base::DIR_APP_DICTIONARIES and path '.*/qtwebengine_dictionaries' xfail_strict = true filterwarnings = error diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 98f7eff4d..a74445507 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -213,6 +213,16 @@ def is_ignored_chromium_message(line): # [9895:9983:0904/043039.500565:ERROR:gpu_memory_buffer_support_x11.cc(49)] # dri3 extension not supported. "dri3 extension not supported.", + + # Qt 6.7 debug build + # [44513:44717:0325/173456.146759:WARNING:render_message_filter.cc(144)] + # Could not find tid + "Could not find tid", + + # [127693:127748:0325/230155.835421:WARNING:discardable_shared_memory_manager.cc(438)] + # Some MojoDiscardableSharedMemoryManagerImpls are still alive. They + # will be leaked. + "Some MojoDiscardableSharedMemoryManagerImpls are still alive. They will be leaked.", ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages) -- cgit v1.2.3-54-g00ecf