From 92e2252b21d4e884bbd06737e5578537267205eb Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 28 Jul 2015 07:42:09 -0700 Subject: [PATCH] test: don't run issue10607.go on ppc64 This is a reprise of https://golang.org/cl/12623. In that a CL I made a suggestion which forgot that the +build constraints in the test directory are not the same as those supported by the go tool: in the test directory, if a single +build line fails, the test is skipped. (In my defense, the code I was commenting on was also wrong.) Change-Id: I8f29392a80b1983027f9a33043c803578409d678 Reviewed-on: https://go-review.googlesource.com/12776 Run-TryBot: Ian Lance Taylor Reviewed-by: David Crawshaw TryBot-Result: Gobot Gobot --- 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 4903a6a7b2c..bf527d0f772 100644 --- a/test/fixedbugs/issue10607.go +++ b/test/fixedbugs/issue10607.go @@ -1,4 +1,4 @@ -// +build linux +// +build linux,!ppc64,!ppc64le // run // Copyright 2015 The Go Authors. All rights reserved.