summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-21 20:50:44 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-22 17:41:12 +0200
commit6b1b3d04312be6b2fa5564d8002bfcd429e2b754 (patch)
treed8c9d0dc3001ba1485f5e4c81f6a1cad2e6ffb8b
parent12ad2fce8f08b7be29afc6c8706c85b36793fc91 (diff)
downloadqutebrowser-6b1b3d04312be6b2fa5564d8002bfcd429e2b754.tar.gz
qutebrowser-6b1b3d04312be6b2fa5564d8002bfcd429e2b754.zip
tests: Ignore another Chromium line
-rw-r--r--tests/end2end/fixtures/quteprocess.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index b1d23f51c..02deafb66 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -112,6 +112,8 @@ def is_ignored_chromium_message(line):
# 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.',
+ # [5469:5503:0621/183219.878182:ERROR:backend_impl.cc(1414)] Unable to map Index file
+ 'Unable to map Index file',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)