()
| 59 | |
| 60 | # ## Test cs_disasm_quick() |
| 61 | def test_cs_disasm_quick(): |
| 62 | for (arch, mode, code, comment, syntax) in all_tests: |
| 63 | print('*' * 40) |
| 64 | print("Platform: %s" % comment) |
| 65 | print("Disasm:"), |
| 66 | print(code.hex(' ')) |
| 67 | for (addr, size, mnemonic, op_str) in cs_disasm_lite(arch, mode, code, 0x1000): |
| 68 | print("0x%x:\t%s\t%s" % (addr, mnemonic, op_str)) |
| 69 | print() |
| 70 | |
| 71 | |
| 72 | # ## Test class Cs |
nothing calls this directly
no test coverage detected
searching dependent graphs…