diff options
-rw-r--r-- | local_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/local_test.go b/local_test.go index 3b8de62..a848b27 100644 --- a/local_test.go +++ b/local_test.go @@ -1,9 +1,14 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // +build !appengine package main import ( "net/http/httptest" + "runtime" "strings" "testing" @@ -11,6 +16,9 @@ import ( ) func TestServer(t *testing.T) { + if runtime.GOOS == "android" { + t.Skip("skipping on android; can't run go tool") + } mux, err := newServer(false, "/static", blog.Config{ TemplatePath: "./template", }) |