From fd296282e0a5058351954f1a7ea2dac5ef87f052 Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Mon, 19 Sep 2016 14:14:58 -0400 Subject: [PATCH] cmd/dist: enable plugin test on darwin/amd64 Change-Id: I6071881a5f7b9638bca0bfef76d6f4f45c9202a6 Reviewed-on: https://go-review.googlesource.com/29396 Run-TryBot: David Crawshaw TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/cmd/dist/test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.48.1