(expected, **kwargs)
| 1267 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 1268 | def test_disassemble_recursive(self): |
| 1269 | def check(expected, **kwargs): |
| 1270 | dis = self.get_disassembly(_h, **kwargs) |
| 1271 | dis = self.strip_addresses(dis) |
| 1272 | self.assertEqual(dis, expected) |
| 1273 | |
| 1274 | check(dis_nested_0, depth=0) |
| 1275 | check(dis_nested_1, depth=1) |
nothing calls this directly
no test coverage detected