Commit 17efbfc5 authored by David Crawshaw's avatar David Crawshaw

cmd/doc: extend darwin/arm64 test TODO to arm

Change-Id: Iee0f3890d66b4117aa5d9f486e5775b1cf31996c
Reviewed-on: https://go-review.googlesource.com/12745Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent 2fc2f8dd
...@@ -299,7 +299,7 @@ var tests = []test{ ...@@ -299,7 +299,7 @@ var tests = []test{
} }
func TestDoc(t *testing.T) { func TestDoc(t *testing.T) {
if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" { if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
t.Skip("TODO: on darwin/arm, test fails: no such package cmd/doc/testdata") t.Skip("TODO: on darwin/arm, test fails: no such package cmd/doc/testdata")
} }
for _, test := range tests { for _, test := range tests {
......
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