Qt 6.10: Ignore new logging messages

See #8694
This commit is contained in:
Florian Bruhin 2025-09-09 13:04:30 +02:00
parent 45483d0994
commit 4d6dccfed5
2 changed files with 7 additions and 0 deletions

View File

@ -91,6 +91,9 @@ qt_log_ignore =
^Unable to detect GPU vendor\.$
# Qt 5 on CI with WebKit
^qglx_findConfig: Failed to finding matching FBConfig for QSurfaceFormat\(version 2\.0, options QFlags<QSurfaceFormat::FormatOption>\(\), depthBufferSize -1, redBufferSize 1, greenBufferSize 1, blueBufferSize 1, alphaBufferSize -1, stencilBufferSize -1, samples -1, swapBehavior QSurfaceFormat::SingleBuffer, swapInterval 1, colorSpace QSurfaceFormat::DefaultColorSpace, profile QSurfaceFormat::NoProfile\)$
# Qt 6.8+ debug build
# https://github.com/qutebrowser/qutebrowser/issues/8069#issuecomment-2017644465
^QObject::connect: Connecting from COMPAT signal \(QWebEnginePage::featurePermissionRequest(ed|Canceled)\(QUrl,QWebEnginePage::Feature\)\)
xfail_strict = true
filterwarnings =
error

View File

@ -253,6 +253,10 @@ def is_ignored_chromium_message(line):
# 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.",
# Qt 6.10 debug build
# "[453900:453973:0909/000324.265214:WARNING:viz_main_impl.cc(85)]"
"VizNullHypothesis is disabled (not a warning)",
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)