tests: Ignore another bogus Chromium log message
This commit is contained in:
parent
2ec16a947f
commit
2e343403de
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue