From: Russ Cox Date: Mon, 26 Sep 2011 17:11:22 +0000 (-0400) Subject: test: disable sigchld test on Windows X-Git-Tag: weekly.2011-10-06~96 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0b09a56a64ecd761258dd7f2046d72a64f32b25b;p=gostls13.git test: disable sigchld test on Windows Alex Brainman reports that this is the only test that keeps us from running test/run. R=alex.brainman, lucio.dere, bradfitz, hectorchu CC=golang-dev https://golang.org/cl/4777043 --- diff --git a/src/run.bash b/src/run.bash index a9689bf15e..b1eaf3abe6 100755 --- a/src/run.bash +++ b/src/run.bash @@ -93,7 +93,6 @@ done ./timing.sh -test ) || exit $? -[ "$GOHOSTOS" == windows ] || (xcd ../test ./run ) || exit $? diff --git a/test/sigchld.go b/test/sigchld.go index 1fb2e21bd5..25bccab72a 100644 --- a/test/sigchld.go +++ b/test/sigchld.go @@ -1,3 +1,4 @@ +// [ "$GOOS" = windows ] || // $G $D/$F.go && $L $F.$A && ./$A.out // Copyright 2009 The Go Authors. All rights reserved.