fpc/tests/test/tsafecall4.pp
florian 2214677656 * tests need -CE
git-svn-id: trunk@44206 -
2020-02-17 20:36:35 +00:00

55 lines
1007 B
ObjectPascal

{ %TARGET=win32,win64,wince,linux,android }
{ %OPT=-CE }
program tsafecall4;
{$mode objfpc}{$H+}
uses
Classes, SysUtils;
procedure SafecallProcedure(AParam1,AParam2: integer); safecall;
var i,j: double;
begin
if (AParam1<>$123456) or (AParam2<>$654321) then
halt(1);
i := 1;
j := 0;
// division by zero, but no exception should be raised. Instead the function
// result has to be <> 0
i := i/j;
end;
function SafecallFunction(AParam1,AParam2: integer): string; safecall;
begin
if (AParam1<>$123456) or (AParam2<>$654321) then
halt(2);
raise exception.create('Ignore and return non-zero');
end;
var
s : string;
pass : boolean;
begin
pass := false;
try
SafecallProcedure($123456,$654321);
except
on E: ESafecallException do
pass := true;
end;
if not pass then
halt(11);
pass := false;
try
s := SafecallFunction($123456,$654321);
except
on E: ESafecallException do
pass := true;
end;
if not pass then
halt(12);
end.