aboutsummaryrefslogtreecommitdiff
path: root/test/nilptr3.go
diff options
context:
space:
mode:
authorMichael Munday <munday@ca.ibm.com>2016-03-20 19:35:59 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2016-04-08 17:51:46 +0000
commitdae98d5c3b02b39f53168a9403d24e1ddd4a16d4 (patch)
treeb74598190364e5c460324d330303ab2f818d55b0 /test/nilptr3.go
parent78715cebcfcca3aaaaba4dd41ef6b82a46d7b93d (diff)
downloadgo-dae98d5c3b02b39f53168a9403d24e1ddd4a16d4.tar.gz
go-dae98d5c3b02b39f53168a9403d24e1ddd4a16d4.zip
test: skip nilptr3 test on s390x
Fails for the same reason as ppc64 and mips64 (incomplete optimization). Change-Id: Ieb4d997fc27d4f2b756e63dd7f588abe10c0213a Reviewed-on: https://go-review.googlesource.com/20963 Reviewed-by: Bill O'Farrell <billotosyr@gmail.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'test/nilptr3.go')
-rw-r--r--test/nilptr3.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/nilptr3.go b/test/nilptr3.go
index 1ba774d839..817d2aec74 100644
--- a/test/nilptr3.go
+++ b/test/nilptr3.go
@@ -1,8 +1,8 @@
// errorcheck -0 -d=nil
// Fails on ppc64x because of incomplete optimization.
// See issues 9058.
-// Same reason for mips64x.
-// +build !ppc64,!ppc64le,!mips64,!mips64le,!amd64
+// Same reason for mips64x and s390x.
+// +build !ppc64,!ppc64le,!mips64,!mips64le,!amd64,!s390x
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style