1#!/usr/bin/env python 2 3import test_basic, test_arm, test_arm64, test_detail, test_lite, test_m68k, test_mips, \ 4 test_ppc, test_x86, test_skipdata, test_sparc, test_systemz, test_tms320c64x, test_customized_mnem, \ 5 test_m680x, test_mos65xx 6 7test_basic.test_class() 8test_arm.test_class() 9test_arm64.test_class() 10test_detail.test_class() 11test_lite.test_class() 12test_m68k.test_class() 13test_mips.test_class() 14test_mos65xx.test_class() 15test_ppc.test_class() 16test_sparc.test_class() 17test_systemz.test_class() 18test_x86.test_class() 19test_tms320c64x.test_class() 20test_m680x.test_class() 21test_skipdata.test_class() 22test_customized_mnem.test() 23