shirou_gopsutil/test/process_posix_test.go

22 lines
313 B
Go
Raw Normal View History

// +build linux freebsd
2014-05-20 15:38:20 +08:00
package test
import (
"os"
"syscall"
"testing"
2014-05-20 15:38:20 +08:00
"github.com/shirou/gopsutil"
)
2014-04-30 15:22:54 +08:00
func Test_SendSignal(t *testing.T) {
2014-04-30 15:16:07 +08:00
checkPid := os.Getpid()
2014-05-20 15:38:20 +08:00
p, _ := gopsutil.NewProcess(int32(checkPid))
2014-04-30 15:16:07 +08:00
err := p.SendSignal(syscall.SIGCONT)
if err != nil {
t.Errorf("send signal %v", err)
}
}