aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-07-15 22:08:27 -0400
committerRuss Cox <rsc@golang.org>2015-07-16 02:16:20 +0000
commit19916e453e293b4d37e481f2b13246682d1667c3 (patch)
treebeea0bac9cb256855c87a483c1e5b89e60bf1680
parenta93e5b4ff9449abff05a4882bf8ea86ad506b2bf (diff)
downloadgo-19916e453e293b4d37e481f2b13246682d1667c3.tar.gz
go-19916e453e293b4d37e481f2b13246682d1667c3.zip
test/fixedbugs: disable issue11656.go on arm64
For #11656. Change-Id: I8365d33a15419bd0e54f71182ad0994e41650264 Reviewed-on: https://go-review.googlesource.com/12248 Reviewed-by: Russ Cox <rsc@golang.org>
-rw-r--r--test/fixedbugs/issue11656.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/fixedbugs/issue11656.go b/test/fixedbugs/issue11656.go
index 4bf657c5a8..ef0f469530 100644
--- a/test/fixedbugs/issue11656.go
+++ b/test/fixedbugs/issue11656.go
@@ -16,6 +16,10 @@
// delivers signals based on the current PC, and that current PC
// doesn't go into the Go runtime.
// +build !windows
+//
+// arm64 gets "illegal instruction" (why is the data executable?)
+// and is unable to do the traceback correctly (why?).
+// +build !arm64
package main
@@ -47,7 +51,7 @@ func main() {
func f(n int) {
if n > 0 {
- f(n-1)
+ f(n - 1)
}
var f struct {
x uintptr