summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-02-25 13:04:25 +0100
committerFlorian Bruhin <me@the-compiler.org>2019-02-25 13:04:25 +0100
commitedcefc063253fa5551937f0f1b5b54c643308d72 (patch)
treec7d128d6a6210dc30f6ca68e1cd9d789a1f4e4d0
parent22e1b22acc05a5c4f5ad20080a378bcea56e7554 (diff)
downloadqutebrowser-edcefc063253fa5551937f0f1b5b54c643308d72.tar.gz
qutebrowser-edcefc063253fa5551937f0f1b5b54c643308d72.zip
Ignore additional Chromium error on Windows
-rw-r--r--tests/end2end/fixtures/quteprocess.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 76b219ece..a946b4430 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -230,6 +230,11 @@ def is_ignored_chromium_message(line):
# content.mojom.RendererAudioOutputStreamFactory
'InterfaceRequest was dropped, the document is no longer active: '
'content.mojom.RendererAudioOutputStreamFactory',
+ # [1920:2168:0225/112442.664:ERROR:in_progress_cache_impl.cc(124)]
+ # Could not write download entries to file: C:\Users\appveyor\AppData\
+ # Local\Temp\1\qutebrowser-basedir-1l3jmxq4\data\webengine\
+ # in_progress_download_metadata_store
+ 'Could not write download entries to file: *',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)