(self)
| 58 | return other |
| 59 | |
| 60 | def HasCrashed(self): |
| 61 | if utils.IsWindows(): |
| 62 | return 0x80000000 & self.exit_code and not (0x3FFFFF00 & self.exit_code) |
| 63 | else: |
| 64 | # Timed out tests will have exit_code -signal.SIGTERM. |
| 65 | if self.timed_out: |
| 66 | return False |
| 67 | return (self.exit_code < 0 and |
| 68 | self.exit_code != -signal.SIGABRT) |
| 69 | |
| 70 | def HasTimedOut(self): |
| 71 | return self.timed_out |
no outgoing calls
no test coverage detected