[ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
Yitzchak Scott-Thoennes [Mon, 11 Sep 2000 16:28:13 +0000 (09:28 -0700)]
Message-Id: <200009112328.e8BNSD616812@garcia.efn.org>

p4raw-id: //depot/perl@7057

t/op/64bitint.t

index 19d2645..344b8be 100644 (file)
@@ -283,15 +283,15 @@ 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";
 
 # eof