From 3f69909851813006216f49083932badee396c4f1 Mon Sep 17 00:00:00 2001 From: Vladimir Stefanovic Date: Tue, 18 Oct 2016 23:51:12 +0200 Subject: [PATCH] test: disable unsupported test for GOARCH=mips{,le} External linking on mips/mipsle is not supported yet (issue #17792). Change-Id: Ic25f4f8fe9e0ec35c72ca9f85c053b398df4952c Reviewed-on: https://go-review.googlesource.com/31512 Reviewed-by: Brad Fitzpatrick --- test/fixedbugs/issue10607.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixedbugs/issue10607.go b/test/fixedbugs/issue10607.go index bf527d0f772cbc..11893a1a7bec00 100644 --- a/test/fixedbugs/issue10607.go +++ b/test/fixedbugs/issue10607.go @@ -1,4 +1,4 @@ -// +build linux,!ppc64,!ppc64le +// +build linux,!mips,!mipsle,!ppc64,!ppc64le // run // Copyright 2015 The Go Authors. All rights reserved.