()
| 72 | |
| 73 | # ## Test cs_disasm_quick() |
| 74 | def test_cs_disasm_quick(): |
| 75 | for arch, mode, code, comment, syntax in all_tests: |
| 76 | print('*' * 40) |
| 77 | print("Platform: %s" % comment) |
| 78 | print("Disasm:"), |
| 79 | print(code.hex(' ')) |
| 80 | for insn in cs_disasm_quick(arch, mode, code, 0x1000): |
| 81 | print("0x%x:\t%s\t%s" % (insn.address, insn.mnemonic, insn.op_str)) |
| 82 | print() |
| 83 | |
| 84 | |
| 85 | def test_different_data_formats(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…