summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-06-09 13:57:20 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-06-09 13:57:20 +0200
commitd38a2094f1a006b5702d1d9702f1da8b3a610ce9 (patch)
tree096f04dfafd8c833f90f395dcfad3e28429de453 /tests/end2end/fixtures/quteprocess.py
parent5b9237318e33009268780f28f0c84b0e0fb148d6 (diff)
downloadqutebrowser-d38a2094f1a006b5702d1d9702f1da8b3a610ce9.tar.gz
qutebrowser-d38a2094f1a006b5702d1d9702f1da8b3a610ce9.zip
tests: Add ignores for Qt 5.15 Chromium debug build
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 626981f13..2e47c9e43 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -290,6 +290,18 @@ def is_ignored_chromium_message(line):
# [2968:3108:0601/123442.125:ERROR:mf_helpers.cc(14)] Error in
# dxva_video_decode_accelerator_win.cc on line 517
'Error in dxva_video_decode_accelerator_win.cc on line 517',
+
+ # Qt 5.15 and debug build
+ # [134188:134199:0609/132454.797229:WARNING:
+ # simple_synchronous_entry.cc(1389)]
+ # Could not open platform files for entry.
+ # [134151:134187:0609/132456.754321:ERROR:process_posix.cc(333)]
+ # Unable to terminate process 134188: No such process (3)
+ # [134151:134187:0609/132456.754414:WARNING:internal_linux.cc(64)]
+ # Failed to read /proc/134188/stat
+ 'Could not open platform files for entry.',
+ 'Unable to terminate process *: No such process (3)',
+ 'Failed to read /proc/*/stat',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)