tests: Add new ignores for Qt 6.10 + GHA + Windows

See #8694
This commit is contained in:
Florian Bruhin 2025-10-22 17:36:45 +02:00
parent e098609a8a
commit 111178358a
1 changed files with 6 additions and 0 deletions

View File

@ -257,6 +257,12 @@ def is_ignored_chromium_message(line):
# Qt 6.10 debug build
# "[453900:453973:0909/000324.265214:WARNING:viz_main_impl.cc(85)]"
"VizNullHypothesis is disabled (not a warning)",
# Qt 6.10 on Windows + GitHub Actions
# [1784:7100:1022/150433.690:ERROR:direct_composition_support.cc(225)]
"GetGpuDriverOverlayInfo: Failed to retrieve video device",
# [1784:7100:1022/150434.202:ERROR:direct_composition_support.cc(1122)]
"QueryInterface to IDCompositionDevice4 failed: No such interface supported (0x80004002)",
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)