summaryrefslogtreecommitdiff
path: root/test/rune.go
Commit message (Collapse)AuthorAgeFilesLines
* test/[n-r]*.go: add documentationRob Pike2012-02-241-0/+3
| | | | | | | | 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
* test: don't use package main for files without a main functionBrad Fitzpatrick2012-02-031-1/+1
| | | | | | | | Part of issue 2833, but works fine with current test runner. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5606056
* gc: rune is now an alias for int32Russ Cox2011-12-091-1/+2
| | | | | | R=ken2 CC=golang-dev http://codereview.appspot.com/5467049
* gc: implement character constant type rulesRuss Cox2011-12-081-0/+43
R=ken2 CC=golang-dev http://codereview.appspot.com/5444054