1 //go:build !windows 2 // +build !windows 3 4 package helper 5 6 import ( 7 "os/exec" 8 9 "github.com/onsi/gomega/gexec" 10 ) 11 12 func terminateProc(session *gexec.Session) error { 13 session.Interrupt() 14 return nil 15 } 16 17 func setSysProcAttr(command *exec.Cmd) {} 18 19 func GetFirstProcess() int { 20 return 1 21 } 22