my
@num
=
qw< 1 2.5 4 4.5 7.5 8 9 Inf >
;
@num
= ((
map
{
"-$_"
}
reverse
@num
), 0,
@num
,
"NaN"
);
my
@methods
=
qw< bmuladd >
;
for
my
$method
(
@methods
) {
for
my
$downgrade
(
undef
,
"Math::BigInt"
) {
for
my
$upgrade
(
undef
,
"Math::BigFloat"
) {
my
$title
=
""
;
if
(
$downgrade
) {
if
(
$upgrade
) {
$title
.=
"upgrading and downgrading"
;
}
else
{
$title
.=
"downgrading, but no upgrading"
;
}
}
else
{
if
(
$upgrade
) {
$title
.=
"upgrading, but no downgrading"
}
else
{
$title
.=
"no upgrading or downgrading"
;
}
}
for
my
$xclass
(
"Math::BigInt"
,
"Math::BigFloat"
) {
for
my
$yclass
(
"Math::BigInt"
,
"Math::BigFloat"
,
""
) {
for
my
$zclass
(
"Math::BigInt"
,
"Math::BigFloat"
,
""
) {
for
my
$xs
(
@num
) {
for
my
$ys
(
@num
) {
for
my
$zs
(
@num
) {
my
$test
;
$test
.=
'Math::BigInt -> upgrade(undef);'
;
$test
.=
' Math::BigFloat -> downgrade(undef);'
;
$test
.=
qq| \$x = $xclass -> new("$xs");|
;
if
(
$yclass
) {
$test
.=
qq| \$y = $yclass -> new("$ys");|
}
else
{
$test
.=
$ys
=~ /^\+?inf$/i ?
qq| \$y = 1e99**1e99;|
:
$ys
=~ /^\-inf$/i ?
qq| \$y = -(1e99**1e99);|
:
$ys
=~ /^nan$/i ?
qq| \$y = (1e99**1e99)-(1e99**1e99);|
:
qq| \$y = $ys;|
;
}
if
(
$zclass
) {
$test
.=
qq| \$z = $zclass -> new("$zs");|
}
else
{
$test
.=
$zs
=~ /^\+?inf$/i ?
qq| \$z = 1e99**1e99;|
:
$zs
=~ /^\-inf$/i ?
qq| \$z = -(1e99**1e99);|
:
$zs
=~ /^nan$/i ?
qq| \$z = (1e99**1e99)-(1e99**1e99);|
:
qq| \$z = $zs;|
;
}
$test
.=
' $xa = refaddr($x);'
;
$test
.=
qq| Math::BigInt -> upgrade("$upgrade");|
if
$upgrade
;
$test
.=
qq| Math::BigFloat -> downgrade("$downgrade");|
if
$downgrade
;
$test
.=
qq| \$q = \$x -> $method(\$y, \$z);|
;
my
$note
;
$note
.=
q|perl -Ilib -MMath::BigFloat -MScalar::Util=refaddr -wle '|
;
$note
.=
$test
;
$note
.=
q|'|
;
note
"\n"
,
$note
,
"\n\n"
;
subtest
$test
=>
sub
{
my
(
$x
,
$xa
,
$y
,
$z
,
$q
);
eval
$test
;
is($@,
''
,
'$@ is empty'
);
is(
$xa
, refaddr(
$q
),
'refaddr($x) = refaddr($q)'
);
};
}
}
}
}
}
}
}
}
}
done_testing();