summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-05-30 19:39:01 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-22 17:41:12 +0200
commite5a6408aaa75c38ad5c7c4a138e7b8b2867f0d19 (patch)
tree7017276b8c2d414c43b485a1bdb8366be1929414
parent5b6c80a800fbdfc61515f60a8c93ba874bf4f637 (diff)
downloadqutebrowser-e5a6408aaa75c38ad5c7c4a138e7b8b2867f0d19.tar.gz
qutebrowser-e5a6408aaa75c38ad5c7c4a138e7b8b2867f0d19.zip
Ignore additional chromium message
See https://github.com/qutebrowser/qutebrowser/runs/6658849317?check_suite_focus=true
-rw-r--r--tests/end2end/fixtures/quteprocess.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index d855e2696..b1d23f51c 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -108,6 +108,10 @@ def is_ignored_chromium_message(line):
# Qt 6.3:
# [2435381:7:0429/200014.168057:ERROR:command_buffer_proxy_impl.cc(125)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
'ContextResult::kTransientFailure: Failed to send *CreateCommandBuffer.',
+
+ # Qt 6.3:
+ # [4919:8:0530/170658.033287:ERROR:command_buffer_proxy_impl.cc(328)] GPU state invalid after WaitForGetOffsetInRange.
+ 'GPU state invalid after WaitForGetOffsetInRange.',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)