(s *specs.Process, es int)
| 50 | } |
| 51 | |
| 52 | func withExecExitStatus(s *specs.Process, es int) { |
| 53 | s.Args = []string{"sh", "-c", fmt.Sprintf("exit %d", es)} |
| 54 | } |
| 55 | |
| 56 | func withExecArgs(s *specs.Process, args ...string) { |
| 57 | s.Args = args |
no outgoing calls
no test coverage detected
searching dependent graphs…