1// +build !windows
2// cmpout
3
4// Copyright 2009 The Go Authors. All rights reserved.
5// Use of this source code is governed by a BSD-style
6// license that can be found in the LICENSE file.
7
8// Test that a program can survive SIGCHLD.
9
10package main
11
12import "syscall"
13
14func main() {
15	syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
16	println("survived SIGCHLD")
17}
18