예제 #1
0
파일: htypes.c 프로젝트: d0i/hpackstream
// test it with valgrind to make sure no memory is leaked.
int main(int argc, char **argv){
  test_dlist();
  test_dstr();
  test_strtable();
  test_strtuple();

  return;
}
예제 #2
0
int main(int argc, char *argv[])
{
	test_list();
	test_dlist();
	test_stack();
	test_evaluate();
	
	puts("##########################################");	
	puts("all tests have been completed!!");
	puts("##########################################");

	return 0;
}