mirror of
https://github.com/golang/go
synced 2024-11-02 05:32:33 +00:00
5e77b009d0
This will permit gccgo to check test output. R=golang-dev, r CC=golang-dev https://golang.org/cl/5554056
15 lines
380 B
Go
15 lines
380 B
Go
// [ "$GOOS" == windows ] ||
|
|
// ($G $D/$F.go && $L $F.$A && ./$A.out 2>&1 | cmp - $D/$F.out)
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import "syscall"
|
|
|
|
func main() {
|
|
syscall.Kill(syscall.Getpid(), syscall.SIGCHLD)
|
|
println("survived SIGCHLD")
|
|
}
|