fpc/tests/webtbs/tw8434.pp
yury 691b3da1ed * Fixed test to be locale independent.
git-svn-id: trunk@7761 -
2007-06-21 17:23:13 +00:00

13 lines
201 B
ObjectPascal

uses sysutils;
var
x: double;
begin
DecimalSeparator:='.';
x := 0.099991;
if (Format('%5.2f', [x]) <> ' 0.10') then
halt(1);
if (Format('%6.3f', [x]) <> ' 0.100') then
halt(2);
end.