Qt 6.9: Add additional error message ignores

See #8444
This commit is contained in:
Florian Bruhin 2025-03-11 17:55:21 +01:00
parent 8b2ab6b01d
commit 7b4c163142
2 changed files with 8 additions and 0 deletions

View File

@ -79,6 +79,10 @@ qt_log_ignore =
QItemSelectionModel: Selecting when no model has been set will result in a no-op.
^QSaveFile::commit: File \(.*[/\\]test_failing_flush0[/\\]foo\) is not open$
^The following paths were searched for Qt WebEngine dictionaries:.*
# Qt 6.9 Beta 1 and 2 and 3 with Xvfb
^Backend texture is not a Vulkan texture\.$
# With offscreen platform plugin
^This plugin does not support (raise|propagateSizeHints)\(\)$
xfail_strict = true
filterwarnings =
error

View File

@ -241,6 +241,10 @@ def is_ignored_chromium_message(line):
# [7072:3412:1209/220659.527:ERROR:simple_index_file.cc(322)] Failed to
# write the temporary index file
"Failed to write the temporary index file",
# 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",
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)