示例#1
0
int
main(void)
{
	// This is only for preventing collisions in s2i tests.
	// If collisions are found in future, change the number. 
	srand(3);
#ifdef WITH_ALPHA
	test_alpha_table();
#endif
#ifdef WITH_ARM
	test_arm_table();
#endif
#ifdef WITH_AARCH64
	test_aarch64_table();
#endif
	test_i386_table();
	test_ia64_table();
	test_ppc_table();
	test_s390_table();
	test_s390x_table();
	test_x86_64_table();
	test_actiontab();
	test_errtab();
	test_fieldtab();
	test_flagtab();
	test_fstypetab();
	test_ftypetab();
	test_machinetab();
	test_msg_typetab();
	test_optab();
	return EXIT_SUCCESS;
}
示例#2
0
int
main(void)
{
#ifdef WITH_ALPHA
	test_alpha_table();
#endif
#ifdef WITH_ARMEB
	test_armeb_table();
#endif
	test_i386_table();
	test_ia64_table();
	test_ppc_table();
	test_s390_table();
	test_s390x_table();
	test_x86_64_table();
	test_actiontab();
	test_errtab();
	test_fieldtab();
	test_flagtab();
	test_machinetab();
	test_msg_typetab();
	test_optab();
	return EXIT_SUCCESS;
}