summaryrefslogtreecommitdiff
path: root/src/lib/strconv/testatof.go
AgeCommit message (Collapse)AuthorFilesLines
2008-11-19change naming convention for tests fromRob Pike1-133/+0
test*.go to *test.go R=rsc DELTA=1747 (864 added, 855 deleted, 28 changed) OCL=19666 CL=19666
2008-11-19add a type testing.T and use it in tests.Rob Pike1-24/+20
update uses of gotest. minor tweak to testing structure for protobuf. R=rsc DELTA=276 (71 added, 75 deleted, 130 changed) OCL=19614 CL=19621
2008-11-19essentially 100% coverage of strconv in tests.Russ Cox1-1/+37
fix a few bugs. R=r DELTA=294 (275 added, 9 deleted, 10 changed) OCL=19595 CL=19595
2008-11-18roll tests into one binaryRuss Cox1-73/+64
R=r DELTA=145 (27 added, 27 deleted, 91 changed) OCL=19423 CL=19502
2008-11-17* faster atof for common casesRuss Cox1-1/+65
(gets 3x speedup in go; got 40x in c) * handle and test overflow R=r DELTA=217 (200 added, 0 deleted, 17 changed) OCL=19399 CL=19422
2008-11-17correctly rounded floating-point conversionsRuss Cox1-0/+46
in new package strconv. move atoi etc to strconv too. update fmt, etc to use strconv. R=r DELTA=2232 (1691 added, 424 deleted, 117 changed) OCL=19286 CL=19380