1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

strconv: fix tests

This commit is contained in:
Alexey 2019-12-27 06:07:09 +03:00 committed by Alexander Medvednikov
parent 6363118aa9
commit a5b43e1f4d
2 changed files with 26 additions and 20 deletions

View File

@ -3,7 +3,11 @@
* String to float Test * String to float Test
* *
**********************************************************************/ **********************************************************************/
import strconv
import (
strconv
strconv.atofq
)
fn test_atof() { fn test_atof() {
// //
@ -38,7 +42,7 @@ fn test_atof() {
assert strconv.atof64(src_num_str[c]).strlong() == x.strlong() assert strconv.atof64(src_num_str[c]).strlong() == x.strlong()
// quick atof // quick atof
mut s1 := (strconv.atof_quick(src_num_str[c]).str()) mut s1 := (atofq.atof_quick(src_num_str[c]).str())
s1 = s1[..src_num_str[c].len] s1 = s1[..src_num_str[c].len]
mut s2 := (x.str()) mut s2 := (x.str())
s2 = s2[..src_num_str[c].len] s2 = s2[..src_num_str[c].len]
@ -67,5 +71,4 @@ fn test_atof() {
// DOUBLE_MINUS_ZERO // DOUBLE_MINUS_ZERO
f1=-0.0 f1=-0.0
assert *ptr == u64(0x8000000000000000) assert *ptr == u64(0x8000000000000000)
} }

File diff suppressed because one or more lines are too long