aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/bindings/python/test_all.py
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /capstone/bindings/python/test_all.py
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'capstone/bindings/python/test_all.py')
-rwxr-xr-xcapstone/bindings/python/test_all.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/capstone/bindings/python/test_all.py b/capstone/bindings/python/test_all.py
new file mode 100755
index 000000000..a01fc6598
--- /dev/null
+++ b/capstone/bindings/python/test_all.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+
+import test_basic, test_arm, test_arm64, test_detail, test_lite, test_m68k, test_mips, \
+ test_ppc, test_x86, test_skipdata, test_sparc, test_systemz, test_tms320c64x, test_customized_mnem, \
+ test_m680x, test_mos65xx, test_xcore, test_riscv
+
+test_basic.test_class()
+test_arm.test_class()
+test_arm64.test_class()
+test_detail.test_class()
+test_lite.test_class()
+test_m68k.test_class()
+test_mips.test_class()
+test_mos65xx.test_class()
+test_ppc.test_class()
+test_sparc.test_class()
+test_systemz.test_class()
+test_x86.test_class()
+test_tms320c64x.test_class()
+test_m680x.test_class()
+test_skipdata.test_class()
+test_customized_mnem.test()
+test_xcore.test_class()
+test_riscv.test_class()