From 66540c2974ea91442dab530ebc3485fe2673030a Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Wed, 11 Dec 2024 09:30:43 +0100 Subject: [PATCH] skip 02synopsis.t test for perl 5.41.x (RT #157814) --- t/02synopsis.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/02synopsis.t b/t/02synopsis.t index 3b99456..c6770a8 100644 --- a/t/02synopsis.t +++ b/t/02synopsis.t @@ -3,6 +3,7 @@ no if $] > 5.018000, warnings => qw(experimental); use Test::More; BEGIN { $] >= 5.010 or plan skip_all => "test requires Perl 5.010"; + $] <= 5.041 or plan skip_all => "test does not work anymore with Perl 5.041 and newer"; }; use 5.010; -- 2.11.0