1
0
mirror of https://github.com/golang/go synced 2024-11-19 15:54:46 -07:00

crypto/x509: skip test on android (no Go tool)

LGTM=minux
R=golang-codereviews, minux
CC=golang-codereviews
https://golang.org/cl/111970043
This commit is contained in:
David Crawshaw 2014-07-08 13:43:02 -04:00
parent 9416fb8c81
commit e50d059862

View File

@ -728,8 +728,9 @@ func TestParsePEMCRL(t *testing.T) {
}
func TestImports(t *testing.T) {
if runtime.GOOS == "nacl" {
t.Skip("skipping on nacl")
switch runtime.GOOS {
case "android", "nacl":
t.Skipf("skipping on %s", runtime.GOOS)
}
if err := exec.Command("go", "run", "x509_test_import.go").Run(); err != nil {