• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

MC/22-Nov-2023-19,48719,243

arm/22-Nov-2023-408319

benchmark/22-Nov-2023-11468

fuzz/22-Nov-2023-227190

regress/22-Nov-2023-2619

READMED22-Nov-20231 KiB3625

benchmark.pyD22-Nov-20233.5 KiB12875

compile_all.shD22-Nov-2023545 3121

fuzz.pyD22-Nov-20233.8 KiB12476

patch_major_os_version.pyD22-Nov-2023790 3015

ppcbranch.pyD22-Nov-20231.7 KiB5440

python_capstone_setup.pyD22-Nov-2023127 51

regress.pyD22-Nov-202351.1 KiB505472

test_all.shD22-Nov-2023202 102

test_c.shD22-Nov-2023555 1812

test_group_name.pyD22-Nov-20236 KiB233203

test_mc.pyD22-Nov-202310.2 KiB262202

test_mc.shD22-Nov-2023599 161

test_python.shD22-Nov-2023531 148

x86odd.pyD22-Nov-20233.7 KiB10778

README

1This directory contains some tools used by developers of Capstone project.
2Average users should ignore all the contents here.
3
4
5- arm/
6	Test some ARM's special input.
7
8- MC/
9	Input used to test various architectures & modes.
10
11- benchmark.py
12	This script benchmarks Python binding by disassembling some random code.
13
14- test_*.sh
15	Run all the tests and send the output to external file to be compared later.
16	This is useful when we want to verify if a commit (wrongly) changes
17	the disassemble result.
18
19- compile_all.sh
20	Compile Capstone for all platforms (*nix32, clang, cygwin, cross-compile) &
21	report the result as pass or fail.
22
23- fuzz.py
24	This simple script disassembles random code for all archs (or selected arch)
25	in order to find segfaults.
26
27- test_mc.sh
28    This script compares the output of Capstone with LLVM's llvm-mc with the
29	input coming from MC/. This relies on test_mc.py to do all the hard works.
30
31- x86odd.py
32	Test some tricky X86 instructions.
33
34- ppcbranch.py
35	Test some tricky branch PPC instructions.
36