1
0
mirror of https://github.com/golang/go synced 2024-11-12 03:00:22 -07:00

cmd/go, cmd/vet: skip tests on Android

Might get the Android build passing, or at least going further.

Change-Id: I08f97156a687abe5a3d95203922f4ffd84fbb212
Reviewed-on: https://go-review.googlesource.com/10924
Reviewed-by: David Crawshaw <crawshaw@golang.org>
This commit is contained in:
Brad Fitzpatrick 2015-06-11 07:26:44 -07:00
parent 7f9f70e5b6
commit 0beb931c76
2 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,9 @@ func TestNoteReading(t *testing.T) {
case "darwin/arm", "darwin/arm64", "nacl/386", "nacl/amd64p32", "nacl/arm":
t.Skipf("skipping on %s/%s - no file system", runtime.GOOS, runtime.GOARCH)
}
if runtime.GOOS == "android" {
t.Skipf("skipping; requires go tool")
}
// TODO: Replace with new test scaffolding by iant.
d, err := ioutil.TempDir("", "go-test-")

View File

@ -35,6 +35,8 @@ func TestVet(t *testing.T) {
if strings.HasPrefix(runtime.GOARCH, "arm") {
t.Skipf("skipping test; no command execution on darwin/%s", runtime.GOARCH)
}
case "android":
t.Skip("skipping test; no go toolchain available")
}
// go build