(self)
| 615 | tracer.runcall(tfunc_main) |
| 616 | |
| 617 | def test_stepinstr(self): |
| 618 | self.expect_set = [ |
| 619 | ('line', 2, 'tfunc_main'), ('stepinstr', ), |
| 620 | ('opcode', 2, 'tfunc_main'), ('next', ), |
| 621 | ('line', 3, 'tfunc_main'), ('quit', ), |
| 622 | ] |
| 623 | with TracerRun(self) as tracer: |
| 624 | tracer.runcall(tfunc_main) |
| 625 | |
| 626 | def test_next(self): |
| 627 | self.expect_set = [ |