aboutsummaryrefslogtreecommitdiff
path: root/test/ken/range.go
AgeCommit message (Collapse)Author
2012-02-24test: document ken/*.goRob Pike
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5694065
2012-02-16test: use testlib (fourth 100)Russ Cox
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5673079
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev https://golang.org/cl/741041
2009-12-10make test/ken safe for optional semisRobert Griesemer
R=rsc, ken2, ken3 https://golang.org/cl/174042
2009-01-26removed a:b in range syntaxKen Thompson
added another channel test R=r OCL=23488 CL=23488
2009-01-06new new & makeRuss Cox
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18arraysKen Thompson
R=r OCL=21564 CL=21564
2008-12-15range clause must have = or :=Ken Thompson
:= illegal in for-increment R=r OCL=21204 CL=21204
2008-12-05range statementKen Thompson
R=r OCL=20667 CL=20667