summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-19 13:51:06 -0400
committerRuss Cox <rsc@golang.org>2014-09-19 13:51:06 -0400
commit3dbb764a310e1243a23c56c19aba8bde32a6c7c0 (patch)
tree262335d25978b6009192f8e7c42b6766e721d788 /doc
parent1a6be6763cdd63016a6342235bdc2f6658205293 (diff)
downloadgo-3dbb764a310e1243a23c56c19aba8bde32a6c7c0.tar.gz
cmd/go, testing: add TestMain support
Fixes issue 8202. LGTM=r, bradfitz R=r, josharian, bradfitz CC=golang-codereviews https://codereview.appspot.com/148770043
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.4.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/go1.4.txt b/doc/go1.4.txt
index 6180bc5b9..f46ef48f5 100644
--- a/doc/go1.4.txt
+++ b/doc/go1.4.txt
@@ -32,6 +32,7 @@ sync/atomic: add Value (CL 136710045)
syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls operate on the calling thread, not the whole process. This does not match the semantics of other platforms, nor the expectations of the caller, so the operations have been disabled until issue 1435 is resolved (CL 106170043)
syscall: now frozen (CL 129820043)
testing: add Coverage (CL 98150043)
+testing: add TestMain support (CL 148770043)
text/scanner: add IsIdentRune field of Scanner. (CL 108030044)
time: use the micro symbol (ยต (U+00B5)) to print microsecond duration (CL 105030046)
encoding/asn1: optional elements with a default value will now only be omitted if they have that value (CL 86960045).