]> Cypherpunks.ru repositories - gostls13.git/commitdiff
test: disable sigchld test on Windows
authorRuss Cox <rsc@golang.org>
Mon, 26 Sep 2011 17:11:22 +0000 (13:11 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 26 Sep 2011 17:11:22 +0000 (13:11 -0400)
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
test/sigchld.go

index a9689bf15e986463310d7eaee1fc54f83bdf427a..b1eaf3abe6d168c4b4bb98a8a949d06eae36fa1f 100755 (executable)
@@ -93,7 +93,6 @@ done
 ./timing.sh -test
 ) || exit $?
 
-[ "$GOHOSTOS" == windows ] ||
 (xcd ../test
 ./run
 ) || exit $?
index 1fb2e21bd56cc3cc20467c86b16654be0727de30..25bccab72a9e958a69faafd3f3874dd693539c0f 100644 (file)
@@ -1,3 +1,4 @@
+// [ "$GOOS" = windows ] ||
 // $G $D/$F.go && $L $F.$A && ./$A.out
 
 // Copyright 2009 The Go Authors. All rights reserved.