From c0f210f0141f65aed5940881289972bf9566ca4a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 18 Oct 2020 22:07:03 +0200 Subject: tests: Ignore Qt 5.15 GL errors (cherry picked from commit 83c2e32bca05023026578ac9b64f7a5938772e9d) --- tests/end2end/fixtures/quteprocess.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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) -- cgit v1.2.3-54-g00ecf