summaryrefslogtreecommitdiff
path: root/test/rename.go
Commit message (Collapse)AuthorAgeFilesLines
* test: ensure all failing tests exit nonzero.Alan Donovan2013-02-121-1/+5
| | | | | | | | | | 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: fix the fix of the rename tests.Rob Pike2012-02-241-39/+40
| | | | | | | | Now they actually test again instead of just setting iota to zero. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5700058
* test/[n-r]*.go: add documentationRob Pike2012-02-241-42/+67
| | | | | | | | 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
* delete all uses of panicln by rewriting them using panic or,Rob Pike2010-03-241-57/+55
| | | | | | | | | in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
* defining package block names must overrideRuss Cox2009-09-091-0/+75
universe block names. BUG=2097244 R=ken OCL=34295 CL=34473