aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2020-12-19 13:46:49 -0800
committerIan Lance Taylor <iant@golang.org>2020-12-21 04:23:39 +0000
commit9abbe277105f9b9a3b4c5905e7faf9a02827ce18 (patch)
tree4d171c4da9302e25c1ab66946fb2f0a1b56cb5bd /test
parent89b44b4e2bb2f88474d6b8476f5c28ea2aea9b28 (diff)
downloadgo-9abbe277105f9b9a3b4c5905e7faf9a02827ce18.tar.gz
go-9abbe277105f9b9a3b4c5905e7faf9a02827ce18.zip
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>
Diffstat (limited to 'test')
-rw-r--r--test/fixedbugs/issue11656.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/fixedbugs/issue11656.go b/test/fixedbugs/issue11656.go
index 62b36cf790..5018263364 100644
--- a/test/fixedbugs/issue11656.go
+++ b/test/fixedbugs/issue11656.go
@@ -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 {