summaryrefslogtreecommitdiff
path: root/test/append.go
Commit message (Collapse)AuthorAgeFilesLines
* test: [a-c]: add introductory comments to testsRob Pike2012-02-191-1/+1
| | | | | | | | | | | | 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
* test: test append with two different named types with same element typeIan Lance Taylor2012-02-011-0/+15
| | | | | | R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/5615045
* runtime: append([]byte, string...)Luuk van Dijk2011-10-121-0/+5
| | | | | | | | Fixes issue 2274 R=rsc, gri, dsymonds, bradfitz, lvd CC=golang-dev http://codereview.appspot.com/5149045
* delete float, complex - code changesRuss Cox2011-01-191-1/+1
| | | | | | | | | | | also: cmplx -> complex float64(1.0) -> 1.0 float64(1) -> 1.0 R=gri, r, gri1, r2 CC=golang-dev http://codereview.appspot.com/3991043
* test for append() built-inRobert Griesemer2010-10-281-0/+227
R=r, rsc CC=golang-dev http://codereview.appspot.com/2777041 Committer: Robert Griesemer <gri@golang.org>