| 91 | } |
| 92 | |
| 93 | type testProcess struct { |
| 94 | fds []*os.File |
| 95 | env env |
| 96 | signals chan os.Signal |
| 97 | sigErr chan error |
| 98 | waitErr chan error |
| 99 | quit chan struct{} |
| 100 | } |
| 101 | |
| 102 | func newTestProcess(fds []*os.File, envstr []string) (*testProcess, error) { |
| 103 | environ := make(map[string]string) |
nothing calls this directly
no outgoing calls
no test coverage detected