aboutsummaryrefslogtreecommitdiff
path: root/tests/core/strconv
Commit message (Collapse)AuthorAgeFilesLines
* add hexfloat (0h) parsing to strconvLaytan Laats2025-05-101-0/+37
|
* Permit parsing of incomplete `infinity` but do not return trueFeoramund2024-06-041-27/+18
| | | | | | | | | To clarify, `parse_f64` will indeed take `infi` to mean `+Inf` and return that as the value, but it will not return `ok = true`. It treats it as `inf` followed by any other trailing character. `parse_f64_prefix` is the lenient one which will return true so long as it finds some meaningful value.
* Add test for `infinity` with trailing charactersFeoramund2024-06-041-0/+15
|
* Fix and subsume `test_issue_2087` into `strconv` test suiteFeoramund2024-06-041-0/+60
| | | | | | | | The full "infinity" strings were expected to be partial consumes, but this is not the case. That has been fixed and the relevant extra tests from that file have been added to this test suite. Fixes #2670
* Add initial test suite for `core:strconv`Feoramund2024-06-041-0/+79