<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 66540c2974ea91442dab530ebc3485fe2673030a Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
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 $] &gt; 5.018000, warnings =&gt; qw(experimental);
 use Test::More;
 BEGIN {
 	$] &gt;= 5.010 or plan skip_all =&gt; "test requires Perl 5.010";
+	$] &lt;= 5.041 or plan skip_all =&gt; "test does not work anymore with Perl 5.041 and newer";
 };
 
 	use 5.010;
-- 
2.11.0

</pre></body></html>