summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-10-18 22:07:03 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-11-25 18:25:51 +0100
commitc0f210f0141f65aed5940881289972bf9566ca4a (patch)
tree2b8a0463bc748cc6af47ae78392932d79970f914
parent98b2bc2a70fb56f72cd26093fcf0a7ca15d43538 (diff)
downloadqutebrowser-c0f210f0141f65aed5940881289972bf9566ca4a.tar.gz
qutebrowser-c0f210f0141f65aed5940881289972bf9566ca4a.zip
tests: Ignore Qt 5.15 GL errors
(cherry picked from commit 83c2e32bca05023026578ac9b64f7a5938772e9d)
-rw-r--r--tests/end2end/fixtures/quteprocess.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 1f0c2a85e..f5cc2bb19 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -316,6 +316,19 @@ def is_ignored_chromium_message(line):
# [338691:4:0929/220114.488847:WARNING:ipc_message_attachment_set.cc(49)]
# MessageAttachmentSet destroyed with unconsumed attachments: 0/1
'MessageAttachmentSet destroyed with unconsumed attachments: *',
+
+ # GitHub Actions with Qt 5.15.1
+ ('SharedImageManager::ProduceGLTexture: Trying to produce a '
+ 'representation from a non-existent mailbox. *'),
+ ('[.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : '
+ 'DoCreateAndTexStorage2DSharedImageINTERNAL: invalid mailbox name'),
+ ('[.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : '
+ 'DoBeginSharedImageAccessCHROMIUM: bound texture is not a shared image'),
+ ('[.DisplayCompositor]RENDER WARNING: texture bound to texture unit 0 is '
+ 'not renderable. It might be non-power-of-2 or have incompatible texture '
+ 'filtering (maybe)?'),
+ ('[.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : '
+ 'DoEndSharedImageAccessCHROMIUM: bound texture is not a shared image'),
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)