Commit 2e613152 authored by David Crawshaw's avatar David Crawshaw

sync/atomic: skip issue 7338 test on darwin/arm64

Similar to darwin/arm. This issue is quite worrying and I hope it
can be addressed for Go 1.5.

Change-Id: Ic095281d6a2e9a38a59973f58d464471db5a2edc
Reviewed-on: https://go-review.googlesource.com/8811Reviewed-by: 's avatarMinux Ma <minux@golang.org>
parent 684473d1
......@@ -1405,7 +1405,8 @@ func TestUnaligned64(t *testing.T) {
func TestNilDeref(t *testing.T) {
switch runtime.GOOS {
case "darwin", "freebsd", "netbsd":
if runtime.GOARCH == "arm" {
switch runtime.GOARCH {
case "arm", "arm64":
t.Skipf("issue 7338: skipping test on %s/%s", runtime.GOOS, runtime.GOARCH)
}
}
......
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