summaryrefslogtreecommitdiff
path: root/doc/progs/defer2.go
Commit message (Collapse)AuthorAgeFilesLines
* doc: remove all docs not tied to distributionRuss Cox2021-02-161-58/+0
| | | | | | | | | | | | | | | | | | They have moved to x/website in CL 291693. The docs that are left are the ones that are edited at the same time as development in this repository and are tied to the specific version of Go being developed. Those are: - the language spec - the memory model - the assembler manual - the current release's release notes Change-Id: I437c4d33ada1b1716b1919c3c939c2cacf407e83 Reviewed-on: https://go-review.googlesource.com/c/go/+/291711 Trust: Russ Cox <rsc@golang.org> Trust: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
* doc/progs: rewrite test driver in GoJosh Bleecher Snyder2015-04-071-2/+0
| | | | | | | | | | | | | | | | | | | | | | | The tests in doc/progs appear to have been originally written for use with the old test driver. At some later point, they acquired their own test driver. Both ran tests in serial. This CL rewrites the current test driver in Go, runs tests concurrently, and cleans up historical artifacts from the old drivers. The primary motivation is to speed up all.bash. On my laptop, using tip, this CL reduces doc/progs test wall time from 26s to 7s. The savings will remain even when the compiler gets faster. Using Go 1.4, this CL reduces test wall time from 15s to 4s. Change-Id: Iae945a8490222beee76e8a2118a0d7956092f543 Reviewed-on: https://go-review.googlesource.com/8410 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
* doc/progs: use test/run.go for testing on WindowsShenghou Ma2012-09-031-0/+2
| | | | | | | | | | cgo[1-4].go, go1.go couldn't be tested now (cgo[1-4].go can only be tested when cgo is enabled, go1.go contain a list of filenames in the current directory) R=golang-dev, alex.brainman, rsc CC=golang-dev https://golang.org/cl/6218048
* doc: trivial comment typo fixShenghou Ma2012-01-121-1/+1
| | | | | | R=golang-dev, r CC=golang-dev https://golang.org/cl/5529080
* doc: only trim newlines in tmpltohtml, gofmt progsAndrew Gerrand2012-01-091-0/+2
| | | | | | R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5530048
* doc: add Defer, Panic, and Recover articleAndrew Gerrand2011-12-121-0/+56
Originally published on The Go Programming Language Blog, August 4 2010. http://blog.golang.org/2010/08/defer-panic-and-recover.html Update #2547 R=golang-dev, r, r CC=golang-dev https://golang.org/cl/5479053