Commit 19916e45 authored by Russ Cox's avatar Russ Cox

test/fixedbugs: disable issue11656.go on arm64

For #11656.

Change-Id: I8365d33a15419bd0e54f71182ad0994e41650264
Reviewed-on: https://go-review.googlesource.com/12248Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
parent a93e5b4f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment