From 111178358ad738743d5c381d43303dcb363c5bda Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 22 Oct 2025 17:36:45 +0200 Subject: [PATCH] tests: Add new ignores for Qt 6.10 + GHA + Windows See #8694 --- tests/end2end/fixtures/quteprocess.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index b1829c152..f47af2ec7 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -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)