From a1a3acbd956b5a70d644d21d1c36b31ae88c6c03 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 27 Sep 2011 09:13:00 -0400 Subject: [PATCH] test: fix windows build TBR=bradfitz CC=golang-dev https://golang.org/cl/5124049 --- test/sigchld.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sigchld.go b/test/sigchld.go index 25bccab72a..74d428efc2 100644 --- a/test/sigchld.go +++ b/test/sigchld.go @@ -1,5 +1,5 @@ -// [ "$GOOS" = windows ] || -// $G $D/$F.go && $L $F.$A && ./$A.out +// ([ "$GOOS" = windows ] && echo survived SIGCHLD) || +// ($G $D/$F.go && $L $F.$A && ./$A.out) // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style -- 2.50.0