From 293a993b6bf9d0dad6119df111b65ece58e6a7e7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 29 Mar 2023 10:28:30 +0200 Subject: build_release: Also ignore GpuChannelMsg_CreateCommandBuffer for Qt 5 Looks like we have some failing smoke tests with: [6636:16643:0329/041427.206197:ERROR:command_buffer_proxy_impl.cc(141)] ContextResult::kTransientFailure: Failed to send GpuChannelMsg_CreateCommandBuffer. --- scripts/dev/build_release.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 3ac48ad55..04d07f59b 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -172,6 +172,11 @@ def smoke_test(executable: pathlib.Path, debug: bool, qt6: bool) -> None: # macOS 11 (r'[0-9:]* WARNING: Failed to load libssl/libcrypto\.'), + + # macOS? + (r'\[.*:ERROR:command_buffer_proxy_impl.cc\([0-9]*\)\] ' + r'ContextResult::kTransientFailure: Failed to send ' + r'.*CreateCommandBuffer\.'), ]) if qt6: stderr_whitelist.extend([ @@ -183,11 +188,6 @@ def smoke_test(executable: pathlib.Path, debug: bool, qt6: bool) -> None: # https://github.com/pyinstaller/pyinstaller/pull/6903 r"[0-9:]* INFO: Sandboxing disabled by user\.", - - # macOS? - (r'\[.*:ERROR:command_buffer_proxy_impl.cc\([0-9]*\)\] ' - r'ContextResult::kTransientFailure: Failed to send ' - r'GpuControl\.CreateCommandBuffer\.'), ]) elif IS_WINDOWS: stderr_whitelist.extend([ -- cgit v1.2.3-54-g00ecf