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 a9689bf..b1eaf3a 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -93,7 +93,6 @@
./timing.sh -test
) || exit $?
-[ "$GOHOSTOS" == windows ] ||
(xcd ../test
./run
) || exit $?
diff --git a/test/sigchld.go b/test/sigchld.go
index 1fb2e21..25bccab 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.