summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-07-03 15:38:29 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-07-03 15:38:29 +0200
commit42a3622906117b4dbb38ab843cf71309f6f5f688 (patch)
treeb3fda31039b8a72056f9425f16c8d4fc0ec05a9b
parenta0f36c5cbf6b9557313f082a837ac599ba88d4fc (diff)
downloadqutebrowser-42a3622906117b4dbb38ab843cf71309f6f5f688.tar.gz
qutebrowser-42a3622906117b4dbb38ab843cf71309f6f5f688.zip
Ignore a new Qt 5.11 lowlevel message
-rw-r--r--tests/end2end/fixtures/quteprocess.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 01cca1ee1..e0ba4e00d 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -104,6 +104,15 @@ def is_ignored_lowlevel_message(message):
# Qt 5.11
# DevTools listening on ws://127.0.0.1:37945/devtools/browser/...
'DevTools listening on *',
+ # /home/travis/build/qutebrowser/qutebrowser/.tox/py36-pyqt511-cov/lib/
+ # python3.6/site-packages/PyQt5/Qt/libexec/QtWebEngineProcess:
+ # /lib/x86_64-linux-gnu/libdbus-1.so.3: no version information
+ # available (required by /home/travis/build/qutebrowser/qutebrowser/
+ # .tox/py36-pyqt511-cov/lib/python3.6/site-packages/PyQt5/Qt/libexec/
+ # ../lib/libQt5WebEngineCore.so.5)
+ '*/QtWebEngineProcess: /lib/x86_64-linux-gnu/libdbus-1.so.3: no '
+ 'version information available (required by '
+ '*/libQt5WebEngineCore.so.5)',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)