aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2016-09-19 14:14:58 -0400
committerDavid Crawshaw <crawshaw@golang.org>2016-09-24 00:24:28 +0000
commitfd296282e0a5058351954f1a7ea2dac5ef87f052 (patch)
tree2d353976f17d1fbda0d4b9b06e0c0c90261c453f /src
parent96acfaaefae3378dcde009a184d3f4e5795ee5cc (diff)
downloadgo-fd296282e0a5058351954f1a7ea2dac5ef87f052.tar.xz
cmd/dist: enable plugin test on darwin/amd64
Change-Id: I6071881a5f7b9638bca0bfef76d6f4f45c9202a6 Reviewed-on: https://go-review.googlesource.com/29396 Run-TryBot: David Crawshaw <crawshaw@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/cmd/dist/test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index 4587143b1e..a65d003fa3 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -749,7 +749,8 @@ func (t *tester) supportedBuildmode(mode string) bool {
// linux-arm64 is missing because it causes the external linker
// to crash, see https://golang.org/issue/17138
switch pair {
- case "linux-386", "linux-amd64", "linux-arm":
+ case "linux-386", "linux-amd64", "linux-arm",
+ "darwin-amd64":
return true
}
return false