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 <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Emmanuel Odeke <emmanuel@orijtech.com>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
This commit is contained in:
Ian Lance Taylor 2020-12-19 13:46:49 -08:00
parent 89b44b4e2b
commit 9abbe27710

View file

@ -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 {