summaryrefslogtreecommitdiff
path: root/test/init1.go
Commit message (Collapse)AuthorAgeFilesLines
* test: ensure all failing tests exit nonzero.Alan Donovan2013-02-121-0/+1
| | | | | | | | | | Previously merely printing an error would cause the golden file comparison (in 'bash run') to fail, but that is no longer the case with the new run.go driver. R=iant CC=golang-dev https://codereview.appspot.com/7310087
* test: use testlib (fourth 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/5673079
* runtime: delete UpdateMemStats, replace with ReadMemStats(&stats).R?my Oudompheng2012-02-061-7/+7
| | | | | | | | | | | | Unexports runtime.MemStats and rename MemStatsType to MemStats. The new accessor requires passing a pointer to a user-allocated MemStats structure. Fixes issue 2572. R=bradfitz, rsc, bradfitz, gustavo CC=golang-dev, remy http://codereview.appspot.com/5616072
* runtime: run goroutines during initRuss Cox2011-10-131-0/+44
Fixes issue 583. Fixes issue 1776. Fixes issue 2001. Fixes issue 2112. R=golang-dev, bradfitz, r, gri CC=golang-dev http://codereview.appspot.com/5265044