From 2e343403de3ace0284f40a3442b3b0b511bf604f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 5 Jun 2025 15:08:00 +0200 Subject: [PATCH] tests: Ignore another bogus Chromium log message --- tests/end2end/fixtures/quteprocess.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index f36cc2c8e..587bc19cf 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -249,6 +249,10 @@ def is_ignored_chromium_message(line): # Qt 6.9 Beta 3 on GitHub Actions # [978:1041:0311/070551.759339:ERROR:bus.cc(407)] "Failed to connect to the bus: Failed to connect to socket /run/dbus/system_bus_socket: No such file or directory", + + # Qt 6.9 on GitHub Actions with Windows Server 2025 + # [4348:7828:0605/123815.402:ERROR:shared_image_manager.cc(356)] + "SharedImageManager::ProduceMemory: Trying to Produce a Memory representation from a non-existent mailbox.", ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)