summaryrefslogtreecommitdiff
path: root/t/op/numconvert.t
diff options
context:
space:
mode:
authorLupe Christoph <lupe@lupe-christoph.de>2000-02-24 12:54:50 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-02 23:49:30 +0000
commit0be093c9cd73a6fc755839b1072012653fad7065 (patch)
tree2fae2bd602d230d86e6a2eda60646b98bf081cca /t/op/numconvert.t
parent2f6e0fe7d26717f8593eb338bc843bd8e5f48e27 (diff)
downloadperl-0be093c9cd73a6fc755839b1072012653fad7065.tar.gz
Better skip message for the test; one of the two problems in
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
Diffstat (limited to 't/op/numconvert.t')
-rwxr-xr-xt/op/numconvert.t8
1 files changed, 7 insertions, 1 deletions
diff --git a/t/op/numconvert.t b/t/op/numconvert.t
index 8eb9b6e341..f3c9867a91 100755
--- a/t/op/numconvert.t
+++ b/t/op/numconvert.t
@@ -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;
}