aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist
diff options
context:
space:
mode:
authorRob Findley <rfindley@google.com>2021-02-17 16:34:00 -0500
committerRob Findley <rfindley@google.com>2021-02-17 20:04:03 -0500
commitf5d0c653e68589f835df7f9a832f2cb9df0b3931 (patch)
treebbc5e1d9bfa06d9cc18f9b750d44c404fe3001d2 /src/cmd/dist
parente196cb8258647652f552757d024b261731d95218 (diff)
parent2f0da6d9e29d9b9d5a4d10427ca9f71d12bbacc8 (diff)
downloadgo-f5d0c653e68589f835df7f9a832f2cb9df0b3931.tar.gz
go-f5d0c653e68589f835df7f9a832f2cb9df0b3931.zip
[dev.typeparams] merge master (2f0da6d) into dev.typeparams
This was a mostly clean merge, with the exception of codereview.cfg and changes in src/go/types. codereview.cfg for dev.typeparams is preserved in this CL. It should be deleted before merging back to master. The go/types changes were merged manually. For the most part this involved taking the union of patches, with the following exceptions: + declInfo.aliasPos is removed, as it is not necessary in dev.typeparams where we have access to the full TypeSpec. + Checker.overflow is updated to use the asBasic converter. + A TODO is added to errorcodes.go to ensure that go1.16 error codes are preserved. Change-Id: If9595196852e2163e27a9478df1e7b2c3704947d
Diffstat (limited to 'src/cmd/dist')
-rw-r--r--src/cmd/dist/test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index 2b1f82246a..a22397aa16 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -747,14 +747,6 @@ func (t *tester) registerTests() {
}
}
- // Doc tests only run on builders.
- // They find problems approximately never.
- if goos != "js" && goos != "android" && !t.iOS() && os.Getenv("GO_BUILDER_NAME") != "" {
- t.registerTest("doc_progs", "../doc/progs", "go", "run", "run.go")
- t.registerTest("wiki", "../doc/articles/wiki", t.goTest(), ".")
- t.registerTest("codewalk", "../doc/codewalk", t.goTest(), "codewalk_test.go")
- }
-
if goos != "android" && !t.iOS() {
// There are no tests in this directory, only benchmarks.
// Check that the test binary builds but don't bother running it.