Check that a normal real division does not generate an exception

This commit is contained in:
Pierre Muller 2024-12-03 12:09:05 +01:00
parent 1f2ecc9a42
commit 564d50ce8e

View File

@ -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