diff options
author | Tony Cook <tony@develop-help.com> | 2015-01-20 16:24:50 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-01-20 16:24:50 +1100 |
commit | cc31571878894dd5f5af83722ca0c2a24621300c (patch) | |
tree | e551cc25b4103c7fed76d0b3d1a2829843cbe76a /t/op/repeat.t | |
parent | 48c4d2435578cd1d8d49c2a16ed8659407164488 (diff) | |
download | perl-cc31571878894dd5f5af83722ca0c2a24621300c.tar.gz |
[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.
Diffstat (limited to 't/op/repeat.t')
-rw-r--r-- | t/op/repeat.t | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/t/op/repeat.t b/t/op/repeat.t index 421b705686..b6dcc7a7ad 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"); |