mirror of
https://github.com/capstone-engine/capstone
synced 2026-08-11 16:26:07 -04:00
* Rename test.c to test_basic.c with corresponding executable name change. * Fix Makefile, tests/Makefile to comprehend renamed test program. See issue #922 * Fix XCode project to comprehend renamed test program. See issue #922 * Rename python test.py to test_basic.py to parallel C test name. See issue #922 * Rename ocaml test.ml to test_basic.ml to parallel C test name. See issue #922 * Fix MSVC project definitions to comprehend renamed test program. See issue #922
17 lines
429 B
Python
Executable file
17 lines
429 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import test_basic, test_arm, test_arm64, test_detail, test_lite, test_mips, test_ppc, \
|
|
test_x86, test_skipdata, test_sparc, test_systemz
|
|
|
|
|
|
test_basic.test_class()
|
|
test_arm.test_class()
|
|
test_arm64.test_class()
|
|
test_detail.test_class()
|
|
test_lite.test_class()
|
|
test_mips.test_class()
|
|
test_ppc.test_class()
|
|
test_sparc.test_class()
|
|
test_systemz.test_class()
|
|
test_x86.test_class()
|
|
test_skipdata.test_class()
|