OSDN Git Service

Add Go frontend, libgo library, and Go testsuite.
[pf3gnuchains/gcc-fork.git] / libgo / go / os / signal / signal_test.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package signal
6
7 import (
8         "syscall"
9         "testing"
10 )
11
12 func TestSignal(t *testing.T) {
13         // Send this process a SIGHUP.
14         syscall.Syscall(syscall.SYS_KILL, uintptr(syscall.Getpid()), syscall.SIGHUP, 0)
15
16         if sig := (<-Incoming).(UnixSignal); sig != SIGHUP {
17                 t.Errorf("signal was %v, want %v", sig, SIGHUP)
18         }
19 }