From: Bryan C. Mills Date: Mon, 22 May 2023 15:18:30 +0000 (-0400) Subject: net: skip TestFileFdBlocks if the "unix" network is not supported X-Git-Tag: go1.21rc1~386 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=10fbd925d6cd6b63acead9fbbfba8963f70a410e;p=gostls13.git net: skip TestFileFdBlocks if the "unix" network is not supported This may fix the android failures observed starting at CL 496080, such as the one in https://build.golang.org/log/7bfc4bd192e21c02a167d2d6a5649f1a2b63a8f1. Change-Id: I4e8eaf9890da269bd1758f59a29fa2a8131d8ae6 Reviewed-on: https://go-review.googlesource.com/c/go/+/496955 TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor Run-TryBot: Bryan Mills Auto-Submit: Bryan Mills --- diff --git a/src/net/file_unix_test.go b/src/net/file_unix_test.go index 0a8badf23f..0499a02404 100644 --- a/src/net/file_unix_test.go +++ b/src/net/file_unix_test.go @@ -14,6 +14,10 @@ import ( // For backward compatibility, opening a net.Conn, turning it into an os.File, // and calling the Fd method should return a blocking descriptor. func TestFileFdBlocks(t *testing.T) { + if !testableNetwork("unix") { + t.Skipf("skipping: unix sockets not supported") + } + ls := newLocalServer(t, "unix") defer ls.teardown()