summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-29 14:34:01 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-03-29 23:42:14 +0200
commit0a3945832b65602d3315725975e8d92b86cd7779 (patch)
tree564f1ec74d3b80178b91a446c40ab88a84b7c66e /scripts
parent179d85274f9ed1cfd3f73087704fc075bd0f6f69 (diff)
downloadqutebrowser-0a3945832b65602d3315725975e8d92b86cd7779.tar.gz
qutebrowser-0a3945832b65602d3315725975e8d92b86cd7779.zip
scripts: Ignore ERR_FILE_NOT_FOUND for smoke test
See #3719
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/build_release.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 6149bd234..b7eda5750 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -144,6 +144,9 @@ def smoke_test(executable):
(r'\[.*:ERROR:dxva_video_decode_accelerator_win.cc\(\d+\)\] '
r'DXVAVDA fatal error: could not LoadLibrary: .*: The specified '
r'module could not be found. \(0x7E\)'),
+
+ # https://github.com/qutebrowser/qutebrowser/issues/3719
+ '[0-9:]* ERROR: Load error: ERR_FILE_NOT_FOUND',
]
proc = _smoke_test_run(executable)