[patch: perl@8211]VMS: add -Duseperlio capacity to configure.com
[p5sagit/p5-mst-13.2.git] / t / op / 64bitint.t
index 19d2645..47779dd 100644 (file)
@@ -16,7 +16,7 @@ BEGIN {
 # 32+ bit integers don't cause noise
 no warnings qw(overflow portable);
 
-print "1..55\n";
+print "1..57\n";
 
 my $q = 12345678901;
 my $r = 23456789012;
@@ -220,7 +220,7 @@ if ($^O ne 'unicos') {
     # especially if operating near the UV/IV limits the low-order bits
     # become mangled even by simple arithmetic operations.
     for (23..37) {
-       print "ok #_ # skipped: too imprecise numbers\n";
+       print "ok $_ # skipped: too imprecise numbers\n";
     }
 }
 
@@ -283,15 +283,41 @@ print "ok 52\n";
 # see toke.c:scan_num().
 
 $q = -9223372036854775808;
-print "not " unless "$q" eq "-9223372036854775808";
+print "# $q ne\n# -9223372036854775808\nnot " unless "$q" eq "-9223372036854775808";
 print "ok 53\n";
 
 $q =  9223372036854775807;
-print "not " unless "$q" eq "9223372036854775807";
+print "# $q ne\n# 9223372036854775807\nnot " unless "$q" eq "9223372036854775807";
 print "ok 54\n";
 
 $q = 18446744073709551615;
-print "not " unless "$q" eq "18446744073709551615";
+print "# $q ne\n# 18446744073709551615\nnot " unless "$q" eq "18446744073709551615";
 print "ok 55\n";
 
+# Test that sv_2nv then sv_2iv is the same as sv_2iv direct
+# fails if whatever Atol is defined as can't actually cope with >32 bits.
+my $num = 4294967297;
+my $string = "4294967297";
+{
+  use integer;
+  $num += 0;
+  $string += 0;
+}
+if ($num eq $string) {
+  print "ok 56\n";
+} else {
+  print "not ok 56 # \"$num\" ne \"$string\"\n";
+}
+
+# Test that sv_2nv then sv_2uv is the same as sv_2uv direct
+$num = 4294967297;
+$string = "4294967297";
+$num &= 0;
+$string &= 0;
+if ($num eq $string) {
+  print "ok 57\n";
+} else {
+  print "not ok 57 # \"$num\" ne \"$string\"\n";
+}
+
 # eof