mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 13:38:31 +02:00
Check that a normal real division does not generate an exception
This commit is contained in:
parent
1f2ecc9a42
commit
564d50ce8e
@ -20,6 +20,15 @@ procedure test_exception(const s : string);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure test_no_exception(const s : string);
|
||||
begin
|
||||
if exception_called then
|
||||
begin
|
||||
Writeln('Unexpected exception called : ',s);
|
||||
Program_has_errors := true;
|
||||
end;
|
||||
end;
|
||||
|
||||
var
|
||||
i,j : longint;
|
||||
e : extended;
|
||||
@ -62,6 +71,17 @@ begin
|
||||
test_exception('First division by zero for reals');
|
||||
try
|
||||
exception_called:=false;
|
||||
e:=i/(j+3.5);
|
||||
except
|
||||
on e : exception do
|
||||
begin
|
||||
Writeln('Wrong exception called ',e.message);
|
||||
exception_called:=true;
|
||||
end;
|
||||
end;
|
||||
test_no_exception('Allowed division by zero for reals after first division by zero for reals');
|
||||
try
|
||||
exception_called:=false;
|
||||
e:=i/j;
|
||||
except
|
||||
on e : exception do
|
||||
|
Loading…
Reference in New Issue
Block a user