aboutsummaryrefslogtreecommitdiff
path: root/internal/stdlib/testdata
diff options
context:
space:
mode:
authorJulie Qiu <julie@golang.org>2020-04-08 12:53:14 -0400
committerJulie Qiu <julieqiu@google.com>2020-04-14 19:01:20 +0000
commitf196ca8501fb1de67fa9283145c4dac3c4cdd29e (patch)
treeee3454309318fdb228d4d2d126948c82e4dc750c /internal/stdlib/testdata
parentba9b5823bf00a1fd5e754b72936473a92514ebe2 (diff)
downloadgo-x-pkgsite-f196ca8501fb1de67fa9283145c4dac3c4cdd29e.tar.xz
internal/fetch: update FetchVersion to return directories
FetchVersion will now return all of the directories in a module. Module.Directories reprsents all of the directories in a module. A directory is redefined as the path and all of the entities that exist at that path, including README, package documentation, package imports, and licenses. Change-Id: I3ebb58800102a2d705fe7bcadaa3ddb476e4d9f6 Reviewed-on: https://team-review.git.corp.google.com/c/golang/discovery/+/705335 Reviewed-by: Jonathan Amsterdam <jba@google.com>
Diffstat (limited to 'internal/stdlib/testdata')
-rw-r--r--internal/stdlib/testdata/v1.12.5/src/cmd/pprof/README17
1 files changed, 0 insertions, 17 deletions
diff --git a/internal/stdlib/testdata/v1.12.5/src/cmd/pprof/README b/internal/stdlib/testdata/v1.12.5/src/cmd/pprof/README
index 612dc644..9de1f515 100644
--- a/internal/stdlib/testdata/v1.12.5/src/cmd/pprof/README
+++ b/internal/stdlib/testdata/v1.12.5/src/cmd/pprof/README
@@ -1,18 +1 @@
This directory is the copy of Google's pprof shipped as part of the Go distribution.
-The bulk of the code is vendored from github.com/google/pprof and is in
-../vendor/github.com/google/pprof.
-
-Two important notes:
-
-1. Using github.com/google/pprof directly (for example, after installing
-with "go get") should work with Go programs, but we cannot guarantee that.
-What we test is that the "go tool pprof" shipped with each Go release works
-with programs from that release.
-
-2. Pprof is used inside Google for C++, Java, and Go programs.
-Because it was developed for that broader context, it is overgeneralized
-when used here for the specific use case of profiling standard Go programs.
-However, we've left the abstractions intact in order to share updates
-between our vendored copy and Google's internal one.
-Please do not take the level of abstraction in this program as an example
-to follow in your own.