parent
b43960e8d4
commit
db3adf188e
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue