This commit is contained in:
Jonas Maebe 2002-12-30 13:03:14 +00:00
parent 9879f684d2
commit 04d9bb1bfb

25
tests/webtbs/tw2296.pp Normal file
View File

@ -0,0 +1,25 @@
uses Dos;
const MAX_VAL = 128;
var
r : real;
f : file of byte;
b1, b2: byte;
begin
assign(f,'bug2296.dat');
rewrite(f);
r := 12.2;
write(f,Byte(round(sin(r)*(MAX_VAL-1)+MAX_VAL)));
b1 := Byte(round(sin(r)*(MAX_VAL-1)+MAX_VAL));
close(f);
reset(f);
read(f,b2);
if b1 <> b2 then
begin
writeln('b1: ',b1,' <> b2: ',b2);
halt(1);
end;
close(f);
erase(f);
end.