From cc70e170c0213977c106a61c8cedeaac83136c3d Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 15 May 2024 09:44:05 +0200 Subject: Make all Perl warnings fatal, catch-up Apply c5385929593 to new Perl files that had missed the note. --- src/test/modules/test_json_parser/t/001_test_json_parser_incremental.pl | 2 +- src/test/modules/test_json_parser/t/002_inline.pl | 2 +- src/test/modules/test_json_parser/t/003_test_semantic.pl | 2 +- src/test/modules/test_json_parser/t/004_test_parser_perf.pl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/test/modules/test_json_parser') diff --git a/src/test/modules/test_json_parser/t/001_test_json_parser_incremental.pl b/src/test/modules/test_json_parser/t/001_test_json_parser_incremental.pl index 30506be0339..abf0d7a2375 100644 --- a/src/test/modules/test_json_parser/t/001_test_json_parser_incremental.pl +++ b/src/test/modules/test_json_parser/t/001_test_json_parser_incremental.pl @@ -5,7 +5,7 @@ use strict; -use warnings; +use warnings FATAL => 'all'; use PostgreSQL::Test::Utils; use Test::More; diff --git a/src/test/modules/test_json_parser/t/002_inline.pl b/src/test/modules/test_json_parser/t/002_inline.pl index 7c4134b3a6a..8d62eb44c8c 100644 --- a/src/test/modules/test_json_parser/t/002_inline.pl +++ b/src/test/modules/test_json_parser/t/002_inline.pl @@ -5,7 +5,7 @@ # for a variety of small inputs. use strict; -use warnings; +use warnings FATAL => 'all'; use PostgreSQL::Test::Utils; use Test::More; diff --git a/src/test/modules/test_json_parser/t/003_test_semantic.pl b/src/test/modules/test_json_parser/t/003_test_semantic.pl index 7d3e07e750c..74e0fa5bb18 100644 --- a/src/test/modules/test_json_parser/t/003_test_semantic.pl +++ b/src/test/modules/test_json_parser/t/003_test_semantic.pl @@ -5,7 +5,7 @@ # output with the expected output. use strict; -use warnings; +use warnings FATAL => 'all'; use PostgreSQL::Test::Utils; use Test::More; diff --git a/src/test/modules/test_json_parser/t/004_test_parser_perf.pl b/src/test/modules/test_json_parser/t/004_test_parser_perf.pl index e82bb3695b8..81b8c8ae428 100644 --- a/src/test/modules/test_json_parser/t/004_test_parser_perf.pl +++ b/src/test/modules/test_json_parser/t/004_test_parser_perf.pl @@ -7,7 +7,7 @@ # of iterations instead of just one. use strict; -use warnings; +use warnings FATAL => 'all'; use PostgreSQL::Test::Utils; use Test::More; -- cgit v1.2.3