fpc/tests/webtbs/tw10519.pp
yury b14276d62a * Fixed tests to be locale independent.
git-svn-id: trunk@10693 -
2008-04-18 13:31:43 +00:00

10 lines
158 B
ObjectPascal

uses sysutils;
var
cs:String;
begin
cs:=FormatFloat('0.00000E+0000',52247.9532745);
if (cs<>'5'+DecimalSeparator+'22480E+0004') then
halt(1);
end.