In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/7fc4e712bcb917c5efc3b8c89fdde419f1a8d44f?hp=2d8d9d71ead3add211debdd99298f23011146431>

- Log -----------------------------------------------------------------
commit 7fc4e712bcb917c5efc3b8c89fdde419f1a8d44f
Author: Karl Williamson <k...@cpan.org>
Date:   Tue Aug 9 13:35:41 2016 -0600

    t/uni/parser.t: Fix failing test on VMS
    
    Commit 2aa61ac397079a33eb3c36c2e7c1f41be224c657 caused this failure.
    Simply turn off warnings, though this won't work once the deprecation is
    made fatal.
    
    Spotted by Craig Berry.
-----------------------------------------------------------------------

Summary of changes:
 t/uni/parser.t | 1 +
 1 file changed, 1 insertion(+)

diff --git a/t/uni/parser.t b/t/uni/parser.t
index f1ce90a..6c524b2 100644
--- a/t/uni/parser.t
+++ b/t/uni/parser.t
@@ -235,6 +235,7 @@ SKIP: {   # [perl #128738]
         skip("test is only valid on 64-bit ints", 2);
     }
     else {
+        no warnings 'deprecated';
         my $a;
         eval "\$a = q \x{ffffffff}Hello, \\\\whirled!\x{ffffffff}";
         is $@, "",

--
Perl5 Master Repository

Reply via email to