summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py10
1 files changed, 10 insertions, 0 deletions
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)