From 0b09a56a64ecd761258dd7f2046d72a64f32b25b Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 26 Sep 2011 13:11:22 -0400 Subject: [PATCH] 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 --- src/run.bash | 1 - test/sigchld.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.bash b/src/run.bash index a9689bf15e9..b1eaf3abe6d 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 1fb2e21bd56..25bccab72a9 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.