From: Ian Lance Taylor Date: Sat, 19 Dec 2020 21:46:49 +0000 (-0800) Subject: test: skip issue11656.go on mips/mips64/ppc64 X-Git-Tag: go1.16rc1~160 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9abbe277105f9b9a3b4c5905e7faf9a02827ce18;p=gostls13.git 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 --- 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 {