aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist/test.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2023-05-17 15:59:47 -0400
committerAustin Clements <austin@google.com>2023-05-19 01:37:37 +0000
commitcbd3305f8c7452963b7a1b4db001776b76370ae4 (patch)
tree7055a0f2c1edeaf11d84b62100b6ca21f61eb50b /src/cmd/dist/test.go
parentab3c2b6d89daa54679cdaa0d78d2902473e0d63b (diff)
downloadgo-cbd3305f8c7452963b7a1b4db001776b76370ae4.tar.gz
go-cbd3305f8c7452963b7a1b4db001776b76370ae4.zip
cmd/cgo/internal/testnocgo: always run in default configuration
This test is actually intended to test that we can build in -static mode even without any cgo. That means it's quite harmless to run in the default build configuration (in addition to running with various other build configurations). Change-Id: Ic6cb5c0eaab83f9bd5718aae57d0fdc69afcb8b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/496178 Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Austin Clements <austin@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 40df8c03b8..2a3028aa7e 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -1130,6 +1130,7 @@ func (t *tester) registerCgoTests(heading string) {
cgoTest("auto", "test", "auto", "")
cgoTest("auto", "testtls", "auto", "")
+ cgoTest("auto", "testnocgo", "auto", "")
// Stub out various buildmode=pie tests on alpine until 54354 resolved.
builderName := os.Getenv("GO_BUILDER_NAME")
@@ -1209,7 +1210,6 @@ func (t *tester) registerCgoTests(heading string) {
// TODO(#56629): Why does this fail on netbsd-arm?
cgoTest("static", "testtls", "external", "static", staticCheck)
}
- cgoTest("auto", "testnocgo", "auto", "", staticCheck)
cgoTest("external", "testnocgo", "external", "", staticCheck)
if goos != "android" {
cgoTest("static", "testnocgo", "external", "static", staticCheck)