mirror of
https://github.com/golang/go
synced 2024-11-12 09:50:21 -07:00
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
This commit is contained in:
parent
122f3980c7
commit
41e5a78441
@ -5,8 +5,7 @@
|
|||||||
include ../../Make.inc
|
include ../../Make.inc
|
||||||
O:=$(HOST_O)
|
O:=$(HOST_O)
|
||||||
|
|
||||||
TARG=\
|
TARG=5a
|
||||||
5a\
|
|
||||||
|
|
||||||
HFILES=\
|
HFILES=\
|
||||||
a.h\
|
a.h\
|
||||||
|
@ -186,6 +186,19 @@ NOTEST+=time # no syscall.Kill, syscall.SIGCHLD for sleep tests
|
|||||||
NOTEST+=websocket # no network
|
NOTEST+=websocket # no network
|
||||||
endif
|
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=\
|
TEST=\
|
||||||
$(filter-out $(NOTEST),$(DIRS))
|
$(filter-out $(NOTEST),$(DIRS))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user