summaryrefslogtreecommitdiff
path: root/test/stack.go
Commit message (Collapse)AuthorAgeFilesLines
* test/[n-z]*.go: add documentationRob Pike2012-02-241-0/+1
| | | | | | R=golang-dev, bradfitz, r CC=golang-dev http://codereview.appspot.com/5700056
* 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
* 5l, 8l: pass stack frame size to morestack when neededRuss Cox2011-02-011-0/+27
| | | | | | | | | | | | | | | Shame on me: I fixed the same bug in 6l in 8691fcc6a66e (http://codereview.appspot.com/2609041) and neglected to look at 5l and 8l to see if they were affected. On the positive side, the check I added in that CL is the one that detected this bug. Fixes issue 1457. R=ken2 CC=golang-dev http://codereview.appspot.com/3981052
* runtime: closures, defer bug fix for Native ClientRuss Cox2010-04-221-1/+1
| | | | | | | | Enable package tests for Native Client build. R=r CC=golang-dev http://codereview.appspot.com/957042
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-27/+30
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
* test for new string bugRuss Cox2009-04-101-0/+5
| | | | | | TBR=r OCL=27306 CL=27306
* closures - runtime and debugger support, test caseRuss Cox2009-02-061-1/+13
| | | | | | | R=r DELTA=257 (250 added, 1 deleted, 6 changed) OCL=24509 CL=24565
* add stack testRuss Cox2009-01-281-0/+52
R=r DELTA=48 (48 added, 0 deleted, 0 changed) OCL=23715 CL=23732