* Fixed test by changing float value from 1E+100 to 1E+10, since 1E+100 value can not be reliably used for comparison on ARM due to precision loss.

git-svn-id: trunk@10694 -
This commit is contained in:
yury 2008-04-18 13:47:29 +00:00
parent b14276d62a
commit c76432b080

View File

@ -18,7 +18,7 @@ begin
stream1:= tmemorystream.create;
stream2:= tmemorystream.create;
try
instance1.realprop:= 1e100;
instance1.realprop:= 1e10;
stream1.writecomponent(instance1);
stream1.position:= 0;
objectbinarytotext(stream1,stream2);