In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/cc31571878894dd5f5af83722ca0c2a24621300c?hp=48c4d2435578cd1d8d49c2a16ed8659407164488>

- Log -----------------------------------------------------------------
commit cc31571878894dd5f5af83722ca0c2a24621300c
Author: Tony Cook <[email protected]>
Date:   Tue Jan 20 16:24:50 2015 +1100

    [perl #123554] stop checking the message
    
    Sith IV/UV larger than Size_t, the overflow can be detected earlier,
    so the message varies.
    
    The error is still reported with a croak(), so it can be captured.
-----------------------------------------------------------------------

Summary of changes:
 t/op/repeat.t | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/t/op/repeat.t b/t/op/repeat.t
index 421b705..b6dcc7a 100644
--- a/t/op/repeat.t
+++ b/t/op/repeat.t
@@ -6,7 +6,7 @@ BEGIN {
 }
 
 require './test.pl';
-plan(tests => 49);
+plan(tests => 48);
 
 # compile time
 
@@ -176,4 +176,3 @@ is($#that_array, 28, 'list repetition propagates lvalue cx 
to its lhs');
 
 # see [perl #123554]
 ok(!eval '33x~3', "eval 33x~3 should panic, not crash perl");
-like($@, qr/^panic: memory wrap/, "check it's a panic");

--
Perl5 Master Repository

Reply via email to