Add a process to the local data structure to make sure it will get killed and cleaned up on tearDown.
(self, process)
| 610 | print("Stderr: %s" % (stderr)) |
| 611 | |
| 612 | def add_process(self, process): |
| 613 | """ |
| 614 | Add a process to the local data structure to make sure it will get killed and cleaned up on |
| 615 | tearDown. |
| 616 | """ |
| 617 | self.processes[process.pid] = process |
| 618 | |
| 619 | def remove_process(self, process): |
| 620 | """ |
no outgoing calls