summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-03-29 10:28:30 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-03-29 10:28:30 +0200
commit293a993b6bf9d0dad6119df111b65ece58e6a7e7 (patch)
tree351070fe535731c0fa2684006353e99635f6e59f
parentc5803587c12c167b4a7c84901db98b65fd590219 (diff)
downloadqutebrowser-293a993b6bf9d0dad6119df111b65ece58e6a7e7.tar.gz
qutebrowser-293a993b6bf9d0dad6119df111b65ece58e6a7e7.zip
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.
-rwxr-xr-xscripts/dev/build_release.py10
1 files 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([