1 #!/usr/bin/env python 2 3 import test_basic, test_arm, test_arm64, test_detail, test_lite, test_mips, test_ppc, \ 4 test_x86, test_skipdata, test_sparc, test_systemz 5 6 7 test_basic.test_class() 8 test_arm.test_class() 9 test_arm64.test_class() 10 test_detail.test_class() 11 test_lite.test_class() 12 test_mips.test_class() 13 test_ppc.test_class() 14 test_sparc.test_class() 15 test_systemz.test_class() 16 test_x86.test_class() 17 test_skipdata.test_class() 18