1
0
mirror of https://github.com/golang/go synced 2024-11-23 14:50:07 -07:00

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/8811
Reviewed-by: Minux Ma <minux@golang.org>
This commit is contained in:
David Crawshaw 2015-04-11 18:57:18 -04:00
parent 684473d19b
commit 2e61315254

View File

@ -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)
}
}