summaryrefslogtreecommitdiff
path: root/test/nilptr.go
Commit message (Collapse)AuthorAgeFilesLines
* test/nilptr: add more testsRuss Cox2013-09-051-0/+28
| | | | | | | | | | | | | | These tests were suggested in golang.org/issue/6080. They were fixed as part of the new nil pointer checks that I added a few weeks ago. Recording the tests as part of marking the issue closed. Fixes issue 6080. R=golang-dev, r, bradfitz CC=golang-dev https://codereview.appspot.com/13255049
* cmd/5g, cmd/6g, cmd/8g: more nil ptr to large struct checksIan Lance Taylor2013-04-241-0/+22
| | | | | | R=r, ken, khr, daniel.morsing CC=dsymonds, golang-dev, rickyz https://codereview.appspot.com/8925043
* 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: make array smaller in nilptr testRuss Cox2011-12-071-1/+1
| | | | | | | | Fixes issue 2314. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5437154
* test: silence/coalesce some testsRuss Cox2011-09-261-0/+4
| | | | | | | | Add copyright notice to nilptr.go. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5139048
* test: merge nilptr/* into one testRuss Cox2011-09-261-0/+125
The 512 MB array causes load delays on some systems. Now that we have recover, we can do all the tests in one binary, so that the delay is incurred just once. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5142044