From 8a8dc212bc3ddfb312459a56c6eb2ce10318225e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 21 Jun 2022 21:12:48 +0200 Subject: build-release: Also ignore FILE_NOT_FOUND for macOS smoke test --- scripts/dev/build_release.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 71c58f00e..8e121eab1 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -171,6 +171,9 @@ def smoke_test(executable: pathlib.Path, debug: bool, qt6: bool) -> None: r'Hardware acceleration and features such as WebGL will not be available\.', r'Unable to create basic Accelerated OpenGL renderer\.', r'Core Image is now using the software OpenGL renderer\. This will be slow\.', + + # https://github.com/qutebrowser/qutebrowser/issues/3719 + r'[0-9:]* ERROR: Load error: ERR_FILE_NOT_FOUND', ]) if qt6: stderr_whitelist.extend([ -- cgit v1.2.3-54-g00ecf