1
0
mirror of https://github.com/golang/go synced 2024-11-21 21:24:45 -07:00

pkg/Makefile: disable netchan test to fix windows build

R=r
CC=golang-dev
https://golang.org/cl/2225042
This commit is contained in:
Alex Brainman 2010-09-18 11:09:08 +10:00
parent 7757fcc17a
commit 289432daff

View File

@ -189,6 +189,7 @@ endif
# Disable tests that windows cannot run yet. # Disable tests that windows cannot run yet.
ifeq ($(GOOS),windows) ifeq ($(GOOS),windows)
NOTEST+=exec # no pipe 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 # many things unimplemented
NOTEST+=os/signal # no signals NOTEST+=os/signal # no signals
NOTEST+=path # tree walking does not work NOTEST+=path # tree walking does not work