summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2000-09-11 09:28:13 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2000-09-12 14:00:51 +0000
commit00450673404012cace8351f59c3c7cd7b1548be4 (patch)
tree753c0ef5d81d16596ccb4042cf0fa715042056f7
parentb6e2112e804883b77794fc533ce307e08638ff71 (diff)
downloadperl-00450673404012cace8351f59c3c7cd7b1548be4.tar.gz
[ID 20000911.008] Not OK: perl v5.7.0 +DEVEL7048 on os2-64int-ld 2.30 (UNINSTALLED)
Message-Id: <200009112328.e8BNSD616812@garcia.efn.org> p4raw-id: //depot/perl@7057
-rw-r--r--t/op/64bitint.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/op/64bitint.t b/t/op/64bitint.t
index 19d2645d63..344b8be539 100644
--- a/t/op/64bitint.t
+++ b/t/op/64bitint.t
@@ -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