mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
313 B
Go
22 lines
313 B
Go
// +build linux freebsd
|
|
|
|
package test
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"testing"
|
|
|
|
"github.com/shirou/gopsutil"
|
|
)
|
|
|
|
func Test_SendSignal(t *testing.T) {
|
|
checkPid := os.Getpid()
|
|
|
|
p, _ := gopsutil.NewProcess(int32(checkPid))
|
|
err := p.SendSignal(syscall.SIGCONT)
|
|
if err != nil {
|
|
t.Errorf("send signal %v", err)
|
|
}
|
|
}
|