summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-07-03 13:39:34 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-07-03 13:39:34 +0200
commit4d1e56a8c621126c7fd5375e4d7a635c7293aeba (patch)
treed3c8e2e0c6c3d3eb4ab75e6df2f806e85c1e4ad0
parent8c11c516b48412787bec4dd0c639bed72bc8d33c (diff)
downloadqutebrowser-4d1e56a8c621126c7fd5375e4d7a635c7293aeba.tar.gz
qutebrowser-4d1e56a8c621126c7fd5375e4d7a635c7293aeba.zip
Ignore "Lost UI shared context" error happening on AppVeyor
-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 4101e6142..01cca1ee1 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -204,6 +204,10 @@ def is_ignored_chromium_message(line):
# [30412:30412:0323/074933.387250:ERROR:node_channel.cc(899)] Dropping
# message on closed channel.
'Dropping message on closed channel.',
+ # [2204:1408:0703/113804.788:ERROR:
+ # gpu_process_transport_factory.cc(1019)] Lost UI shared context.
+ 'Lost UI shared context.',
+
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)