aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2019-02-21 17:38:53 -0500
committerBryan C. Mills <bcmills@google.com>2019-02-24 00:36:13 +0000
commiteb2d1cdd1bbc1912e316040f8ef9a363511d3747 (patch)
tree58e2530e381d75eaa4f428b922df8a34081c5668 /src/cmd/dist
parent551af5f50a29366260e82fc636c7c6def50b1101 (diff)
downloadgo-eb2d1cdd1bbc1912e316040f8ef9a363511d3747.tar.xz
misc/cgo/testplugin: convert test.bash to Go and fix in module mode
Updates #30228 Updates #28387 Change-Id: Iad7d960b70221f90ccc2372bb1d4d41cec3926e4 Reviewed-on: https://go-review.googlesource.com/c/163214 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/cmd/dist')
-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 6392321091..a03803b911 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -701,7 +701,7 @@ func (t *tester) registerTests() {
t.registerTest("testshared", "../misc/cgo/testshared", t.goTest(), t.timeout(600))
}
if t.supportedBuildmode("plugin") {
- t.registerTest("testplugin", "../misc/cgo/testplugin", "./test.bash")
+ t.registerTest("testplugin", "../misc/cgo/testplugin", t.goTest(), t.timeout(600))
}
if gohostos == "linux" && goarch == "amd64" {
t.registerTest("testasan", "../misc/cgo/testasan", "go", "run", "main.go")