]> Cypherpunks repositories - gostls13.git/commitdiff
test: skip issue11656.go on mips/mips64/ppc64
authorIan Lance Taylor <iant@golang.org>
Sat, 19 Dec 2020 21:46:49 +0000 (13:46 -0800)
committerIan Lance Taylor <iant@golang.org>
Mon, 21 Dec 2020 04:23:39 +0000 (04:23 +0000)
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>
test/fixedbugs/issue11656.go

index 62b36cf790fff1374f238ebd429d30f89826ae18..5018263364568edac152812ea8c539acff275523 100644 (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 {