mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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:
parent
89b44b4e2b
commit
9abbe27710
1 changed files with 7 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue