shirou_gopsutil/process/process_posix_test.go

20 lines
276 B
Go
Raw Normal View History

// +build linux freebsd
2014-12-30 21:09:05 +08:00
package process
import (
"os"
"syscall"
"testing"
)
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()
p, _ := 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)
}
}