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