mirror of
https://github.com/golang/go.git
synced 2026-04-04 10:20:00 +09:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user