From: Daniel Stenberg Date: Mon, 2 Jan 2023 16:47:30 +0000 (+0100) Subject: runtests: consider warnings fatal and error on them X-Git-Tag: curl-7_88_0~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=22f795c834cfdbacbb1b55426028a581e3cf67a8;p=thirdparty%2Fcurl.git runtests: consider warnings fatal and error on them To help us detect and fix warnings in this script easier and faster. Assisted-by: Jakob Hirsch Ref: #10206 Closes #10208 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 7911b76780..67e42b77e4 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -75,7 +75,8 @@ BEGIN { } use strict; -use warnings; +# Promote all warnings to fatal +use warnings FATAL => 'all'; use Cwd; use Digest::MD5 qw(md5); use MIME::Base64;