From: Joe Poirier Date: Fri, 10 Sep 2010 18:05:57 +0000 (-0400) Subject: windows: disable unimplemented tests X-Git-Tag: weekly.2010-09-15~61 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=41e5a78441000c039e845d20a0e74191d185f5f7;p=gostls13.git windows: disable unimplemented tests Add windows NOTEST list to pkg make file. 5a make file. the change removes a space character that was included when appending an extension to TARG. R=brainman, rsc CC=golang-dev https://golang.org/cl/2140046 --- diff --git a/src/cmd/5a/Makefile b/src/cmd/5a/Makefile index 9485e5cf83..f4463c97b0 100644 --- a/src/cmd/5a/Makefile +++ b/src/cmd/5a/Makefile @@ -5,8 +5,7 @@ include ../../Make.inc O:=$(HOST_O) -TARG=\ - 5a\ +TARG=5a HFILES=\ a.h\ diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 67f8f8d812..b8e45da407 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -186,6 +186,19 @@ NOTEST+=time # no syscall.Kill, syscall.SIGCHLD for sleep tests NOTEST+=websocket # no network endif +# Disable tests that windows cannot run yet. +ifeq ($(GOOS),windows) +NOTEST+=exec # no pipe +NOTEST+=log # no runtime.Caller +NOTEST+=net # no network +NOTEST+=os # many things unimplemented +NOTEST+=os/signal # no signals +NOTEST+=path # tree walking does not work +NOTEST+=syslog # no network +NOTEST+=time # no syscall.Kill, syscall.SIGCHLD for sleep tests +NOTEST+=websocket # no network +endif + TEST=\ $(filter-out $(NOTEST),$(DIRS))