From 996c540be265716f3c00259eee38487c0b6e301e Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Mon, 19 Oct 2015 14:41:38 -0400 Subject: [PATCH] net: android no longer supports unix/unixgram I cannot find any documentation for this, but these tests no longer run on the device I have since upgrading to Android L. Presumably it still works for root, but standard Android programs to not have root access. Change-Id: I001c8fb5ce22f9ff8d7433f881d0dccbf6ab969d Reviewed-on: https://go-review.googlesource.com/16056 Reviewed-by: Hyang-Ah Hana Kim --- src/net/platform_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/platform_test.go b/src/net/platform_test.go index c9415d1038c1ea..76c53138cdd7aa 100644 --- a/src/net/platform_test.go +++ b/src/net/platform_test.go @@ -32,7 +32,7 @@ func testableNetwork(network string) bool { } case "unix", "unixgram": switch runtime.GOOS { - case "nacl", "plan9", "windows": + case "android", "nacl", "plan9", "windows": return false } // iOS does not support unix, unixgram.