diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-06-29 20:32:33 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-06-29 20:32:33 +0100 |
commit | cac1beb07914178078e9fe59db3a6f74bad85860 (patch) | |
tree | c2bd8a1593cb11b6685d07781c2dffe961be27c9 /lib/bigintpl.t | |
parent | c9d5e35e7efda8acf195b970afb943d0d7481bb4 (diff) | |
download | perl-cac1beb07914178078e9fe59db3a6f74bad85860.tar.gz |
Suppress deprecation warnings from test output for perl4 era libs.
A tweak to the pattern used by 96471c6b3e9cad6e, to match the current warning.
Diffstat (limited to 'lib/bigintpl.t')
-rw-r--r-- | lib/bigintpl.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bigintpl.t b/lib/bigintpl.t index 9245683eb1..bdd4919d37 100644 --- a/lib/bigintpl.t +++ b/lib/bigintpl.t @@ -10,7 +10,7 @@ BEGIN { # of testing. These tests will be removed along with bigint.pl in # the next major release of perl. local $SIG{__WARN__} = sub { - if ($_[0] !~ /deprecated/) { + if ($_[0] !~ /will be removed from the Perl core distribution/) { print(STDERR @_); } }; |