(self)
| 46 | self.__elapsed_time = None |
| 47 | |
| 48 | def print_info(self): |
| 49 | print('CMD=', " ".join(self.__cmd)) |
| 50 | if self.__segfault: |
| 51 | print('EXPECTED=SEGFAULT') |
| 52 | else: |
| 53 | print('EXPECTED=' + self.__expected) |
| 54 | print('FILE=' + self.__file) |
| 55 | |
| 56 | def __communicate(self, p, timeout=None, **kwargs): |
| 57 | return p.communicate(timeout=timeout) |