Better skip message for the test; one of the two problems in
Lupe Christoph [Thu, 24 Feb 2000 11:54:50 +0000 (12:54 +0100)]
Subject: [ID 20000224.003] Not OK: perl v5.5.660 on i86pc-solaris 2.7
Message-Id: <200002241054.LAA06808@lupe-christoph.de>

p4raw-id: //depot/perl@6500

t/op/numconvert.t

index 8eb9b6e..f3c9867 100755 (executable)
@@ -51,7 +51,13 @@ my $big_iv = do {use integer; $max_uv1 * 16}; # 16 is an arbitrary number here
 
 print "# max_uv1 = $max_uv1, max_uv2 = $max_uv2, big_iv = $big_iv\n";
 if ($max_uv1 ne $max_uv2 or $big_iv > $max_uv1) {
-  print "1..0\n# Unsigned arithmetic is not sane\n";
+  print "1..0 # skipped: unsigned perl arithmetic is not sane";
+  eval { require Config; import Config };
+  use vars qw(%Config);
+  if ($Config{d_quad} eq 'define') {
+      print " (common in 64-bit platforms)";
+  }
+  print "\n";
   exit 0;
 }