tests: Ignore another bogus Chromium log message

This commit is contained in:
Florian Bruhin 2025-06-05 15:08:00 +02:00 committed by Chad Kouse
parent 91f55a3659
commit 8eb4af9ec2
No known key found for this signature in database
GPG Key ID: 2BBC602A2578C7A2
1 changed files with 4 additions and 0 deletions

View File

@ -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)