From: Dan Fandrich Date: Mon, 3 Feb 2025 18:19:20 +0000 (-0800) Subject: tests: stop promoting perl warnings to fatal errors X-Git-Tag: curl-8_12_0~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9712db21d1786f208bedd8796773d38d9f7128fa;p=thirdparty%2Fcurl.git tests: stop promoting perl warnings to fatal errors While this is useful on CI to highlight issues in the scripts, it's a recipe for pain when enabled on users' builds. Suggested-by: Leon Timmermans Ref: #16128 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index da9caebfc2..e28fd56e50 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -57,8 +57,7 @@ # given, this won't be a problem. use strict; -# Promote all warnings to fatal -use warnings FATAL => 'all'; +use warnings; use 5.006; use POSIX qw(strftime);