(self, testfunc, arg)
| 542 | self.guard_is_false, self.guard_is_true = get_bool_guard_ops() |
| 543 | |
| 544 | def _run_with_optimizer(self, testfunc, arg): |
| 545 | res = testfunc(arg) |
| 546 | |
| 547 | ex = get_first_executor(testfunc) |
| 548 | return res, ex |
| 549 | |
| 550 | |
| 551 | def test_int_type_propagation(self): |
no test coverage detected