Change 23896 by [EMAIL PROTECTED] on 2005/01/28 20:38:44
For some reason pack.t isn't warnings clean on maint. For now, remove
warnings, but once the implmentation in pp_pack.c is unified, check
again and if necessary track the cause down.
Affected files ...
... //depot/maint-5.8/perl/t/op/pack.t#19 edit
Differences ...
==== //depot/maint-5.8/perl/t/op/pack.t#19 (xtext) ====
Index: perl/t/op/pack.t
--- perl/t/op/pack.t#18~23895~ Fri Jan 28 12:28:38 2005
+++ perl/t/op/pack.t Fri Jan 28 12:38:44 2005
@@ -1,4 +1,5 @@
-#!./perl -w
+#!./perl
+# FIXME - why isn't this -w clean in maint?
BEGIN {
chdir 't' if -d 't';
@@ -15,7 +16,7 @@
plan tests => 13855;
use strict;
-use warnings;
+# use warnings;
use Config;
my $Is_EBCDIC = (defined $Config{ebcdic} && $Config{ebcdic} eq 'define');
End of Patch.