make t/op/pack.t not explode when u64size=''
Alexander Gough [Mon, 8 Oct 2007 16:09:35 +0000 (17:09 +0100)]
Message-ID: <20071008150935.GE24241@the.earth.li>

p4raw-id: //depot/perl@32072

t/op/pack.t

index ef88540..9312646 100755 (executable)
@@ -43,7 +43,7 @@ if ($no_signedness) {
 }
 
 for my $size ( 16, 32, 64 ) {
-  if (defined $Config{"u${size}size"} and $Config{"u${size}size"} != ($size >> 3)) {
+  if (defined $Config{"u${size}size"} and ($Config{"u${size}size"}||0) != ($size >> 3)) {
     push @valid_errors, qr/^Perl_my_$maybe_not_avail$size\(\) not available/;
   }
 }