(self, reason)
| 135 | # dbg.quit_and_wait() |
| 136 | |
| 137 | def expect_divide_by_zero(self, reason): |
| 138 | if platform.system() == 'Linux': |
| 139 | self.assertEqual(reason, DebugStopReason.SignalFpe) |
| 140 | else: |
| 141 | self.assertEqual(reason, DebugStopReason.Calculation) |
| 142 | |
| 143 | def test_exception_divzero(self): |
| 144 | fpath = name_to_fpath('do_exception', self.arch) |
no outgoing calls
no test coverage detected