summaryrefslogtreecommitdiff
path: root/test/initcomma.go
Commit message (Collapse)AuthorAgeFilesLines
* test/initcomma.go: restore what it's supposed to be testingRob Pike2012-02-201-4/+6
| | | | | | | | which is trailing commas in literals. They were gofmted away at some point. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5673103
* 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 http://codereview.appspot.com/5673079
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-19/+64
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
* Automated g4 rollback of changelist 25024,Russ Cox2009-03-031-4/+4
| | | | | | | | | | plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
* convert composite literals from { } to ( ).Russ Cox2009-02-131-4/+4
| | | | | | | | | | only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
* fixed and added more testsKen Thompson2009-01-061-3/+20
| | | | | | R=r OCL=22187 CL=22187
* fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike2008-12-201-1/+1
| | | | | | | | | leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
* 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
* allow trailing comma in braced initialized listRuss Cox2008-10-141-0/+17
R=ken OCL=17141 CL=17143