]> Cypherpunks repositories - gostls13.git/commitdiff
build: Drop syslog on DISABLE_NET_TESTS=1
authorGustavo Niemeyer <gustavo@niemeyer.net>
Wed, 9 Feb 2011 04:50:23 +0000 (23:50 -0500)
committerRuss Cox <rsc@golang.org>
Wed, 9 Feb 2011 04:50:23 +0000 (23:50 -0500)
Even if local, it requires communication with a daemon
which may not be available.  This is creating problems
for getting an Ubuntu package going in Launchpad's PPA.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/3989062

src/pkg/Makefile

index 2ca68f3e935b1f1c5507725feb27e446d00d4747..619167ca43802538eb2909e91d7583153a0c263a 100644 (file)
@@ -187,7 +187,7 @@ NOBENCH=\
 
 # Disable tests that depend on an external network.
 ifeq ($(DISABLE_NET_TESTS),1)
-NOTEST+=http net
+NOTEST+=http net syslog
 endif
 
 # Disable tests that windows cannot run yet.