summaryrefslogtreecommitdiff
path: root/test/alias.go
Commit message (Collapse)AuthorAgeFilesLines
* test: [a-c]: add introductory comments to testsRob Pike2012-02-191-2/+3
| | | | | | | | | | | | Very few of the compiler regression tests include a comment saying waht they do. Many are obvious, some are anything but. I've started with a-c in the top directory. More will follow once we agree on the approach, correctness, and thoroughness here. zerodivide.go sneaked in too. R=rsc, r CC=golang-dev http://codereview.appspot.com/5656100
* test: use testlib (first 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/5656082
* utf8.String: move to exp/utf8string.StringRob Pike2012-01-171-4/+1
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5528115
* renaming_4: gofix -r everything/but/src/pkgRob Pike2011-11-081-7/+7
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/5338043
* test/alias.go: additional testsRuss Cox2011-10-261-1/+17
| | | | | | R=ken2 CC=golang-dev http://codereview.appspot.com/5327045
* gc: preserve uint8 and byte distinction in errors, import dataRuss Cox2011-10-181-0/+19
There is no semantic change here, just better errors. If a function says it takes a byte, and you pass it an int, the compiler error now says that you need a byte, not that you need a uint8. Groundwork for rune. R=ken2 CC=golang-dev http://codereview.appspot.com/5300042