Commit 7c3b324d authored by Alex Brainman's avatar Alex Brainman Committed by Brad Fitzpatrick

net: skip TestUnixConnLocalWindows on windows/arm

Similarly to CL 138676, skip TestUnixConnLocalWindows on windows/arm.

Fixes #28061

Change-Id: I2270d2f9d268e85ea567be0c0c37c48e4d482282
Reviewed-on: https://go-review.googlesource.com/c/140397
Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 04dc1b24
......@@ -34,8 +34,11 @@ func isBuild17063() bool {
}
func TestUnixConnLocalWindows(t *testing.T) {
if runtime.GOARCH == "386" {
switch runtime.GOARCH {
case "386":
t.Skip("not supported on windows/386, see golang.org/issue/27943")
case "arm":
t.Skip("not supported on windows/arm, see golang.org/issue/28061")
}
if !isBuild17063() {
t.Skip("unix test")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment