summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2024-03-25 22:39:35 +0100
committerFlorian Bruhin <me@the-compiler.org>2024-03-25 23:05:25 +0100
commita45cfb89cb49f906cc72032c7a737b0b255c3bcb (patch)
tree4e9954d43c49ca9d550b5c82d4be3022b1459f37
parentad3ba9fe84166d0c8fe5de59be5f0fc27a251a35 (diff)
downloadqutebrowser-a45cfb89cb49f906cc72032c7a737b0b255c3bcb.tar.gz
qutebrowser-a45cfb89cb49f906cc72032c7a737b0b255c3bcb.zip
tests: Add new ignored error messages
-rw-r--r--pytest.ini2
-rw-r--r--tests/end2end/fixtures/quteprocess.py10
2 files changed, 12 insertions, 0 deletions
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)