From 5789f838bea28b57cce6b8def426aef933fb1050 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 5 Sep 2018 15:53:30 +0200 Subject: [PATCH] net: skip splice unix-to-tcp tests on android The android builders are failing on the AF_UNIX part of the new splice test from CL 113997. Skip them. Change-Id: Ia0519aae922acb11d2845aa687633935bcd4b1b0 Reviewed-on: https://go-review.googlesource.com/133515 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- src/net/splice_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/net/splice_test.go b/src/net/splice_test.go index 3e7fd8251b..656c194094 100644 --- a/src/net/splice_test.go +++ b/src/net/splice_test.go @@ -19,6 +19,9 @@ import ( func TestSplice(t *testing.T) { t.Run("tcp-to-tcp", func(t *testing.T) { testSplice(t, "tcp", "tcp") }) + if !testableNetwork("unixgram") { + t.Skip("skipping unix-to-tcp tests") + } t.Run("unix-to-tcp", func(t *testing.T) { testSplice(t, "unix", "tcp") }) } -- 2.50.0