From 5ea48c6e781e47708d83c8b26fe79ca4a3752357 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 16 Dec 2022 21:05:35 +0100 Subject: scripts: Ignore CreateCommandBuffer warning for release smoketest --- scripts/dev/build_release.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 5cc3a4821..8704b3aae 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -183,6 +183,11 @@ 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 ' + 'GpuControl\.CreateCommandBuffer\.'), ]) elif IS_WINDOWS: stderr_whitelist.extend([ -- cgit v1.2.3-54-g00ecf