Ejemplo n.º 1
0
int main(int argc, char **argv) {
  grpc_test_init(argc, argv);
  test_strdup();
  test_dump();
  test_dump_slice();
  test_parse_uint32();
  test_asprintf();
  test_strjoin();
  test_strjoin_sep();
  test_strsplit();
  return 0;
}
Ejemplo n.º 2
0
int
main (int argc, char **argv)
{
  (void)argc;
  (void)argv;

  test_percent_escape ();
  test_compare_filenames ();
  test_strconcat ();
  test_xstrconcat ();
  test_make_filename_try ();
  test_make_absfilename_try ();
  test_strsplit ();

  xfree (home_buffer);
  return 0;
}
Ejemplo n.º 3
0
int		main()
{
	test_memalloc();
	test_memdel();
	test_strnew();
	test_strdel();
	test_strclr();
	test_striter();
	test_striteri();
	test_strmap();
	test_strmapi();
	test_strequ();
	test_strnequ();
	test_strsub();
	test_strjoin();
	test_strtrim();
	test_strsplit();
	test_itoa();
	return (0);
}
Ejemplo n.º 4
0
int main(int argc, char **argv) {
  grpc_test_init(argc, argv);
  test_dump_slice();
  test_strsplit();
  return 0;
}