...

Source file src/github.com/redhat-developer/odo/tests/helper/helper_nowindows.go

Documentation: github.com/redhat-developer/odo/tests/helper

     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  

View as plain text