* test fails now if it causes an exception

git-svn-id: trunk@39624 -
This commit is contained in:
florian 2018-08-17 19:49:40 +00:00
parent ea32ddd5b2
commit 9e9c2c02ed

View File

@ -13,14 +13,23 @@ begin
x := intpower(d,-314);
writeln('10^(-314) = ',x); //should be 1e-315
except
on E: Exception do writeln('10^(-314) (should be 1e-314): ', E.Message);
on E: Exception do
begin
writeln('10^(-314) (should be 1e-314): ', E.Message);
halt(1);
end;
end;
try
d := 2;
x := intpower(d,-2000);
writeln('2^(-2000) = ',x); //should be 0
except
on E: Exception do writeln(' 0.5^2000 (should be 0) : ', E.Message);
on E: Exception do
begin
writeln(' 0.5^2000 (should be 0) : ', E.Message);
halt(1);
end;
end;
writeln('ok');
{$endif FPC_HAS_TYPE_DOUBLE}
end.