From 289432daffde1630f1363d7b50cae7132e3da6ce Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Sat, 18 Sep 2010 11:09:08 +1000 Subject: [PATCH] pkg/Makefile: disable netchan test to fix windows build R=r CC=golang-dev https://golang.org/cl/2225042 --- src/pkg/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/Makefile b/src/pkg/Makefile index da44167c347..910dd41889b 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -189,6 +189,7 @@ endif # Disable tests that windows cannot run yet. ifeq ($(GOOS),windows) NOTEST+=exec # no pipe +NOTEST+=netchan # net.Dial("tcp", "", "0.0.0.0:80") doesn't work on windows NOTEST+=os # many things unimplemented NOTEST+=os/signal # no signals NOTEST+=path # tree walking does not work