From 9abbe277105f9b9a3b4c5905e7faf9a02827ce18 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 19 Dec 2020 13:46:49 -0800 Subject: [PATCH] test: skip issue11656.go on mips/mips64/ppc64 For #11656 For #43283 Change-Id: I1fcf2b24800f421e36201af43130b487abe605b1 Reviewed-on: https://go-review.googlesource.com/c/go/+/279312 Trust: Ian Lance Taylor Run-TryBot: Ian Lance Taylor Run-TryBot: Emmanuel Odeke Reviewed-by: Emmanuel Odeke --- test/fixedbugs/issue11656.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/fixedbugs/issue11656.go b/test/fixedbugs/issue11656.go index 62b36cf790..5018263364 100644 --- a/test/fixedbugs/issue11656.go +++ b/test/fixedbugs/issue11656.go @@ -27,6 +27,13 @@ import ( ) func main() { + // This test is currently failing on some architectures. + // See issue #43283. + switch runtime.GOARCH { + case "ppc64", "mips", "mipsle", "mips64", "mips64le": + return + } + debug.SetPanicOnFault(true) defer func() { if err := recover(); err == nil { -- 2.50.0