示例#1
0
文件: wlasm.cpp 项目: Wiladams/wilasm
int _tmain(int argc, _TCHAR* argv[])
{
	//test_16bit();
	//test_endian();
	//test_streamer();
	//test_tokenizer(program1);
	//test_tokenizer(program2);
	test_constants();

	return 0;
}
int main(int ac, char* av[]) {
  int errs = 0;

  errs += test_constants();
  errs += test_compares();
  errs += test_defined();
  errs += test_errs();
#if !defined(NO_ERRNO_CHECK)
  errs += test_exception();
#endif

  printf("%d errs!\n", errs);
  return errs + 55;
}