1
0
mirror of https://github.com/golang/go synced 2024-11-18 15:14:44 -07:00

go.tools/cmd/cover: move docs to separate doc.go

The doc.go files will be copied into the binary distributions'
source tree that "godoc cover" works.

R=r
CC=golang-dev
https://golang.org/cl/14599045
This commit is contained in:
Andrew Gerrand 2013-10-11 09:13:58 +09:00
parent f5b337da55
commit ce4c627192
2 changed files with 21 additions and 14 deletions

View File

@ -2,20 +2,6 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// Cover is a program for analyzing the coverage profiles generated by
// 'go test -coverprofile=cover.out'.
//
// Cover is also used by 'go test -cover' to rewrite the source code with
// annotations to track which parts of each function are executed.
// It operates on one Go source file at a time, computing approximate
// basic block information by studying the source. It is thus more portable
// than binary-rewriting coverage tools, but also a little less capable.
// For instance, it does not probe inside && and || expressions, and can
// be mildly confused by single statements with multiple function literals.
//
// For usage information, please see:
// go help testflag
// go tool cover -help
package main package main
import ( import (

21
cmd/cover/doc.go Normal file
View File

@ -0,0 +1,21 @@
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
/*
Cover is a program for analyzing the coverage profiles generated by
'go test -coverprofile=cover.out'.
Cover is also used by 'go test -cover' to rewrite the source code with
annotations to track which parts of each function are executed.
It operates on one Go source file at a time, computing approximate
basic block information by studying the source. It is thus more portable
than binary-rewriting coverage tools, but also a little less capable.
For instance, it does not probe inside && and || expressions, and can
be mildly confused by single statements with multiple function literals.
For usage information, please see:
go help testflag
go tool cover -help
*/
package main