summaryrefslogtreecommitdiff
path: root/test/ken/string.go
AgeCommit message (Collapse)AuthorFilesLines
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox1-3/+3
R=gri CC=golang-dev http://codereview.appspot.com/1620042
2010-03-30single argument panicRuss Cox1-48/+54
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
2009-12-10make test/ken safe for optional semisRobert Griesemer1-2/+1
R=rsc, ken2, ken3 http://codereview.appspot.com/174042
2009-11-20x[y:] for stringsRuss Cox1-1/+1
R=ken2 http://codereview.appspot.com/157114
2009-06-04string([]int) is now implementedRob Pike1-5/+15
R=rsc DELTA=18 (10 added, 2 deleted, 6 changed) OCL=29909 CL=29909
2009-04-16make string take []byte only, so have to use *[10]byte to convertRuss Cox1-2/+2
R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27578 CL=27584
2009-01-06new new & makeRuss Cox1-1/+1
R=r OCL=22166 CL=22166
2008-12-20fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike1-1/+1
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-1/+1
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-08-11fix bug depot:Rob Pike1-17/+17
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
2008-06-21remove receclarations from testsKen Thompson1-10/+10
that are supposed to succeed SVN=124018
2008-06-06add ken's tests.Rob Pike1-0/+103
update run to work with multiple directories SVN=121485