summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2004-03-21 03:27:04 -0600
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-03-21 17:22:42 +0000
commit3b8c0df9bfb9b3699a23e8633f5ede3b929d4620 (patch)
tree1f0f8b28552fb6a80108cbe8780fdef53a65e611 /t/lib
parenta7ec4e2e48d9a1e5e168070e2793619b1758b3bb (diff)
downloadperl-3b8c0df9bfb9b3699a23e8633f5ede3b929d4620.tar.gz
Finally, this "Negative repeat count" warning wasn't such a great
idea. Disable it. But add tests for this : Subject: Re: [perl #27811] (@x) x -1 is a panic Message-ID: <20040321152704.GA9041@petdance.com> p4raw-id: //depot/perl@22549
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/warnings/pp9
1 files changed, 0 insertions, 9 deletions
diff --git a/t/lib/warnings/pp b/t/lib/warnings/pp
index db4202739b..5ed7aa0891 100644
--- a/t/lib/warnings/pp
+++ b/t/lib/warnings/pp
@@ -102,12 +102,3 @@ use utf8 ;
$_ = "\x80 \xff" ;
reverse ;
EXPECT
-########
-# pp.c
-use warnings;
-$a = "b" x -1;
-$a = "b" x 0;
-no warnings;
-$a = "b" x -1;
-EXPECT
-Negative repeat count at - line 3.