summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-07-22 22:56:35 -0400
committerRuss Cox <rsc@golang.org>2014-07-22 22:56:35 -0400
commitf6a9612c74e164b8fdf008023bbea0040c27860e (patch)
tree23f6cb1c8ba16b3f62b48577a381e817208cf7c2 /doc
parent12ce2aeee54f37c2d4566ae36f68eb9d8ffd651d (diff)
downloadgo-f6a9612c74e164b8fdf008023bbea0040c27860e.tar.gz
testing: add Coverage function
I've found this very useful for generating good test case lists for -short mode for the disassemblers. Fixes issue 7959. LGTM=r R=r CC=golang-codereviews https://codereview.appspot.com/98150043
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 689c73115..3cf595f19 100644
--- a/doc/go1.4.txt
+++ b/doc/go1.4.txt
@@ -11,5 +11,6 @@ encoding/gob: remove unsafe (CL 102680045)
misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/IDEsAndTextEditorPlugins instead (CL 105470043)
runtime/race: freebsd is supported (CL 107270043)
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)
+testing: add Coverage (CL 98150043)
text/scanner: add IsIdentRune field of Scanner. (CL 108030044)
time: use the micro symbol (ยต (U+00B5)) to print microsecond duration (CL 105030046)