mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 22:20:19 +02:00
* 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:
parent
b14276d62a
commit
c76432b080
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user