summaryrefslogtreecommitdiff
path: root/t/op/misc.t
diff options
context:
space:
mode:
authorM. J. T. Guy <mjtg@cus.cam.ac.uk>2000-04-18 19:24:49 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-04-24 17:26:05 +0000
commit85e0ebd8793b17cfbac766abc03b5fff57b2b2cd (patch)
treee48ed318ccf7c1ed15fcb0a05dba0d524263f0da /t/op/misc.t
parent6439433f25b10ec5d9ab02cf0758bdbcfdffe5ff (diff)
downloadperl-85e0ebd8793b17cfbac766abc03b5fff57b2b2cd.tar.gz
Do not assume sign propagation.
Subject: [PATCH] Re: [ID 20000410.010] Unicoss 10.0.0.6 and perl 5.6.0 To: payner@ncifcrf.gov, perl5-porters@perl.org Message-Id: <E12hbk1-0006Ws-00@ursa.cus.cam.ac.uk> p4raw-id: //depot/cfgperl@5935
Diffstat (limited to 't/op/misc.t')
-rwxr-xr-xt/op/misc.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/op/misc.t b/t/op/misc.t
index ac1a44fadb..41a720215f 100755
--- a/t/op/misc.t
+++ b/t/op/misc.t
@@ -59,12 +59,12 @@ $a = ":="; split /($a)/o, "a:=b:=c"; print "@_"
EXPECT
a := b := c
########
-use integer;
$cusp = ~0 ^ (~0 >> 1);
+use integer;
$, = " ";
-print +($cusp - 1) % 8, $cusp % 8, -$cusp % 8, ($cusp + 1) % 8, "!\n";
+print +($cusp - 1) % 8, $cusp % 8, -$cusp % 8, 8 | (($cusp + 1) % 8 + 7), "!\n";
EXPECT
--1 0 0 1 !
+7 0 0 8 !
########
$foo=undef; $foo->go;
EXPECT