capstone/tests
2016-05-01 12:32:48 +02:00
..
Makefile suite: move fuzz_hardness.c to suite/fuzz/ 2015-06-16 17:32:03 +08:00
README tests: add introductions for test_skipdata.c & test_iter.c to README 2014-10-11 01:33:32 +08:00
test_arm64.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_arm.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_detail.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_iter.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_mips.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_ppc.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_skipdata.c Replace CAPSTONE_API to mycallback and cs_skipdata_cb_t 2016-04-08 08:14:04 -07:00
test_sparc.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_systemz.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test_x86.c Remove X86_OP_FP case 2016-05-01 12:32:48 +02:00
test_xcore.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00
test.c Addressed compile errors occur when built as C++11 2016-03-31 18:12:34 -07:00

This directory contains some test code to show how to use Capstone API.

- test.c
  This code shows the most simple form of API where we only want to get basic
  information out of disassembled instruction, such as address, mnemonic and
  operand string.

- test_detail.c:
  This code shows how to access to architecture-neutral information in disassembled
  instructions, such as implicit registers read/written, or groups of instructions
  that this instruction belong to.

- test_skipdata.c:
  This code shows how to use SKIPDATA option to skip broken instructions (most likely
  some data mixed with instructions) and continue to decode at the next legitimate
  instructions.

- test_iter.c:
  This code shows how to use the API cs_disasm_iter() to decode one instruction at
  a time inside a loop.

- test_<arch>.c
  These code show how to access architecture-specific information for each
  architecture.