aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/cov/doc.go
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2013-05-06 17:33:44 -0700
committerAndrew Gerrand <adg@golang.org>2013-05-06 17:33:44 -0700
commit1c5438aae896edcd1e9f9618f4776517f08053b3 (patch)
tree7d2f489e27c89279743243f6df58cb88f5c30e0b /src/cmd/cov/doc.go
parent9e93d5014e6a2e0ef9daf89489c7b12531fc95f3 (diff)
downloadgo1.1rc2.tar.xz
go1.1rc2go1.1rc2
Diffstat (limited to 'src/cmd/cov/doc.go')
-rw-r--r--src/cmd/cov/doc.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/cmd/cov/doc.go b/src/cmd/cov/doc.go
deleted file mode 100644
index ab5d1220ad..0000000000
--- a/src/cmd/cov/doc.go
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2009 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.
-
-// +build ignore
-
-/*
-
-Cov is a rudimentary code coverage tool.
-
-Usage:
- go tool cov [-lsv] [-g substring] [-m minlines] [6.out args]
-
-Given a command to run, it runs the command while tracking which
-sections of code have been executed. When the command finishes,
-cov prints the line numbers of sections of code in the binary that
-were not executed. With no arguments it assumes the command "6.out".
-
-
-The options are:
-
- -l
- print full path names instead of paths relative to the current directory
- -s
- show the source code that didn't execute, in addition to the line numbers.
- -v
- print debugging information during the run.
- -g substring
- restrict the coverage analysis to functions or files whose names contain substring
- -m minlines
- only report uncovered sections of code larger than minlines lines
-
-The program is the same for all architectures: 386, amd64, and arm.
-
-*/
-package main