stas        2004/09/27 19:56:34

  Modified:    t/response/TestVhost log.pm
  Log:
  don't use:
     use warnings FATAL => 'all';
  here as it breaks the $SIG{__WARN__} sub test for perl 5.6, though
  it works fine with perl 5.8+
  
  Revision  Changes    Path
  1.6       +5 -1      modperl-2.0/t/response/TestVhost/log.pm
  
  Index: log.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/response/TestVhost/log.pm,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -u -r1.5 -r1.6
  --- log.pm    16 Sep 2004 23:01:13 -0000      1.5
  +++ log.pm    28 Sep 2004 02:56:34 -0000      1.6
  @@ -4,7 +4,11 @@
   # the vhost error_log and not the main one.
   
   use strict;
  -use warnings FATAL => 'all';
  +use warnings;
  +# don't use:
  +#   use warnings FATAL => 'all';
  +# here as it breaks the $SIG{__WARN__} sub test for perl 5.6, though
  +# it works fine with perl 5.8+
   
   use Apache::RequestUtil ();
   use Apache::Log ();
  
  
  

Reply via email to