summaryrefslogtreecommitdiff
path: root/test/reorder.go
Commit message (Collapse)AuthorAgeFilesLines
* test: a number of fixes.Alan Donovan2013-02-111-22/+6
| | | | | | | | | | | | | Details: - reorder.go: delete p8. (Once expectation is changed per b/4627 it is identical to p1.) - switch.go: added some more (degenerate) switches. - range.go: improved error messages in a few cases. - method.go: added tests of calls to promoted methods. R=iant CC=golang-dev https://codereview.appspot.com/7306087
* test: add test for order of evaluation of map index on left of =Ian Lance Taylor2012-04-241-0/+9
| | | | | | | | Gccgo used to get this wrong. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6121044
* test/[n-r]*.go: add documentationRob Pike2012-02-241-1/+1
| | | | | | | | The rename ones needed redoing. R=golang-dev, bradfitz, rsc CC=golang-dev http://codereview.appspot.com/5698054
* test: use testlib (final 61)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/5671080
* gc: stricter multiple assignment + testRuss Cox2011-10-131-0/+121
Fixes issue 693. R=ken2 CC=golang-dev http://codereview.appspot.com/5265045