Commit e50d0598 authored by David Crawshaw's avatar David Crawshaw

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

LGTM=minux
R=golang-codereviews, minux
CC=golang-codereviews
https://golang.org/cl/111970043
parent 9416fb8c
......@@ -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 {
......
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