summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime_test.go
diff options
context:
space:
mode:
authorDavid Crawshaw <david.crawshaw@zentus.com>2014-07-08 14:47:52 -0400
committerDavid Crawshaw <david.crawshaw@zentus.com>2014-07-08 14:47:52 -0400
commit2fe492d6301b2ebf3468c49df7a88f48025445f0 (patch)
treec1c0cd8b89a5c49384967bd56b1e441951471f6e /src/pkg/runtime/runtime_test.go
parentfee1eef7f8c0bfa328341ed09c1ab62230d87fee (diff)
downloadgo-2fe492d6301b2ebf3468c49df7a88f48025445f0.tar.gz
runtime: skip crash test on android
LGTM=bradfitz R=golang-codereviews, bradfitz, minux CC=golang-codereviews https://codereview.appspot.com/110400043
Diffstat (limited to 'src/pkg/runtime/runtime_test.go')
-rw-r--r--src/pkg/runtime/runtime_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pkg/runtime/runtime_test.go b/src/pkg/runtime/runtime_test.go
index a726f500d..5e24e2570 100644
--- a/src/pkg/runtime/runtime_test.go
+++ b/src/pkg/runtime/runtime_test.go
@@ -95,8 +95,9 @@ func BenchmarkDeferMany(b *testing.B) {
// The value reported will include the padding between runtime.gogo and the
// next function in memory. That's fine.
func TestRuntimeGogoBytes(t *testing.T) {
- if GOOS == "nacl" {
- t.Skip("skipping on nacl")
+ switch GOOS {
+ case "android", "nacl":
+ t.Skipf("skipping on %s", GOOS)
}
dir, err := ioutil.TempDir("", "go-build")