From 9712db21d1786f208bedd8796773d38d9f7128fa Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 3 Feb 2025 10:19:20 -0800 Subject: [PATCH] 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 --- tests/runtests.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.47.3