2014-05-17 09:45:23 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2015-08-04 00:45:08 +08:00
|
|
|
import test_basic, test_arm, test_arm64, test_detail, test_lite, test_m68k, test_mips, \
|
2016-05-03 20:52:11 +08:00
|
|
|
test_ppc, test_x86, test_skipdata, test_sparc, test_systemz, test_tms320c64x, test_customized_mnem
|
2014-05-17 09:45:23 +08:00
|
|
|
|
2014-04-11 17:00:33 +08:00
|
|
|
|
2015-06-08 17:21:27 +08:00
|
|
|
test_basic.test_class()
|
2014-04-11 17:00:33 +08:00
|
|
|
test_arm.test_class()
|
|
|
|
test_arm64.test_class()
|
|
|
|
test_detail.test_class()
|
|
|
|
test_lite.test_class()
|
2015-08-04 00:45:08 +08:00
|
|
|
test_m68k.test_class()
|
2014-04-11 17:00:33 +08:00
|
|
|
test_mips.test_class()
|
|
|
|
test_ppc.test_class()
|
2014-05-17 09:45:23 +08:00
|
|
|
test_sparc.test_class()
|
|
|
|
test_systemz.test_class()
|
2014-04-11 17:00:33 +08:00
|
|
|
test_x86.test_class()
|
2016-05-03 20:52:11 +08:00
|
|
|
test_tms320c64x.test_class()
|
2014-05-17 09:45:23 +08:00
|
|
|
test_skipdata.test_class()
|
2015-04-27 11:51:48 +08:00
|
|
|
test_customized_mnem.test()
|