polserver/testsuite/escript/pack/pack010-double-exponent.src
turleypol a538d812a0
Unpack of bigger double values on windows (#576)
* added test for pack/unpack double which has exponent representation. Bug
in vs 2022 17.8..
removed unneeded minimum versions of cmake, root cmake file has a higher
minimum version

* switch back to vs2019

* force rebuild external libs

* docs
2023-12-10 20:30:17 +00:00

9 lines
150 B
Text

include "packtst";
var ob := 0.00000000000076;
var rep := "r7.6e-13";
test_pack( ob, rep );
ob := 6000000.0;
rep := "r6e+06";
test_pack( ob, rep );