From 1313e7982f44c24948e73c4795d9606265d36871 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Tue, 17 Mar 2015 12:38:53 +1100 Subject: [PATCH] test: disable recover4 test to fix ppc64 builds Updates #10180 Temporarily disable this test on ppc64 systems as all our builders use 64k page size. We need a portable way to get the page size of the host so we can correctly size the mmap hole. Change-Id: Ibd36ebe2f54cf75a44667e2070c385f0daaca481 Reviewed-on: https://go-review.googlesource.com/7652 Reviewed-by: Andrew Gerrand --- test/recover4.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/recover4.go b/test/recover4.go index 115d5a0eed7..5f66a50e3f2 100644 --- a/test/recover4.go +++ b/test/recover4.go @@ -1,4 +1,5 @@ // +build linux darwin +// +build !ppc64,!ppc64le // run // Copyright 2015 The Go Authors. All rights reserved.