diff options
Diffstat (limited to 'pkg/test/dockerutil/profile.go')
-rw-r--r-- | pkg/test/dockerutil/profile.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/test/dockerutil/profile.go b/pkg/test/dockerutil/profile.go index 5cad3e959..4855a52fc 100644 --- a/pkg/test/dockerutil/profile.go +++ b/pkg/test/dockerutil/profile.go @@ -20,8 +20,9 @@ import ( "os" "os/exec" "path/filepath" - "syscall" "time" + + "golang.org/x/sys/unix" ) // profile represents profile-like operations on a container. @@ -114,7 +115,7 @@ func (p *profile) createProcess(c *Container) error { // killProcess kills the process, if running. func (p *profile) killProcess() error { if p.cmd != nil && p.cmd.Process != nil { - return p.cmd.Process.Signal(syscall.SIGTERM) + return p.cmd.Process.Signal(unix.SIGTERM) } return nil } |