summary refs log tree commit diff stats
path: root/tests/float/tfloat4.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #18400 (#18402)Andreas Rumpf2021-06-301-0/+6
|
* remove unused imports from testsnarimiran2019-11-061-1/+1
|
* require errormsg to be specified before file.Arne Döring2018-12-111-2/+1
|
* Fix for isssue in parseBiggestFloat #7060 (#7061)cooldome2018-01-111-0/+6
|
* make tests green again; closes #5861Andreas Rumpf2017-10-101-1/+1
|
* made test green for WindowsAraq2016-09-301-2/+4
|
* fixes issue 4212 && add test for various valid zero floats.Parashurama2016-05-251-13/+21
|
* fixes #4212Andreas Rumpf2016-05-251-1/+1
|
* Fixed parsing of float literals.Reimer Behrends2014-05-231-0/+42
Float literals were not parsed properly when their fractional part exceeded 53 significant bits. This affected in particular math.PI and math.E. Rather than reinventing the wheel, this patch reuses C's strtod() implementation, which already does the heavy lifting with respect to correctness, though some caution is necessary to keep float parsing locale-independent.