(loops)
| 550 | |
| 551 | def test_int_type_propagation(self): |
| 552 | def testfunc(loops): |
| 553 | num = 0 |
| 554 | for i in range(loops): |
| 555 | x = num + num |
| 556 | a = x + 1 |
| 557 | num += 1 |
| 558 | return a |
| 559 | |
| 560 | res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) |
| 561 | self.assertIsNotNone(ex) |
nothing calls this directly
no test coverage detected