aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist/test.go
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2022-12-02 13:33:04 -0500
committerGopher Robot <gobot@golang.org>2023-01-20 17:47:38 +0000
commite7495d873703b0f1602d796b147e56b5c432b1d5 (patch)
tree7b531fba1900588184ebf8edebc6f9511c0a5d55 /src/cmd/dist/test.go
parent09d852ceac9da5cf879b3a2f8146c5d0dd4b26fa (diff)
downloadgo-e7495d873703b0f1602d796b147e56b5c432b1d5.tar.gz
go-e7495d873703b0f1602d796b147e56b5c432b1d5.zip
cmd/dist: remove GOTESTONLY environment variable
This hook was added for the Go build system (x/build) to be able to set the run flag value, but it's no longer used anywhere. Remove it for now. Updates #46054. Change-Id: I64e7d68d2b270303f3bd54f73079600f209e350a Reviewed-on: https://go-review.googlesource.com/c/go/+/455519 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Austin Clements <austin@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/dist/test.go')
-rw-r--r--src/cmd/dist/test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index a94945893c..5b725394e4 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -36,7 +36,7 @@ func cmdtest() {
flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them. This is for some builders. Not all dist tests respect this flag, but most do.")
flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
- flag.StringVar(&t.runRxStr, "run", os.Getenv("GOTESTONLY"),
+ flag.StringVar(&t.runRxStr, "run", "",
"run only those tests matching the regular expression; empty means to run all. "+
"Special exception: if the string begins with '!', the match is inverted.")
flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")