1#!/usr/bin/env python 2 3import 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 7test_basic.test_class() 8test_arm.test_class() 9test_arm64.test_class() 10test_detail.test_class() 11test_lite.test_class() 12test_mips.test_class() 13test_ppc.test_class() 14test_sparc.test_class() 15test_systemz.test_class() 16test_x86.test_class() 17test_skipdata.test_class() 18