summaryrefslogtreecommitdiff
path: root/test/ken/range.go
Commit message (Collapse)AuthorAgeFilesLines
* test: document ken/*.goRob Pike2012-02-241-0/+2
| | | | | | R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5694065
* test: use testlib (fourth 100)Russ Cox2012-02-161-1/+1
| | | | | | | | | | | 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
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-49/+58
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev https://golang.org/cl/741041
* make test/ken safe for optional semisRobert Griesemer2009-12-101-6/+3
| | | | | R=rsc, ken2, ken3 https://golang.org/cl/174042
* removed a:b in range syntaxKen Thompson2009-01-261-4/+4
| | | | | | | | added another channel test R=r OCL=23488 CL=23488
* new new & makeRuss Cox2009-01-061-2/+2
| | | | | | R=r OCL=22166 CL=22166
* change *map to map; *chan to chan; new(T) to new(*T)Russ Cox2008-12-191-1/+1
| | | | | | | | fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
* arraysKen Thompson2008-12-181-1/+1
| | | | | | R=r OCL=21564 CL=21564
* range clause must have = or :=Ken Thompson2008-12-151-6/+6
| | | | | | | | := illegal in for-increment R=r OCL=21204 CL=21204
* range statementKen Thompson2008-12-051-0/+113
R=r OCL=20667 CL=20667