Lines Matching defs:test_dns_name_concat_one
333 static void test_dns_name_concat_one(const char *a, const char *b, int r, const char *result) {
341 test_dns_name_concat_one("", "", 0, ".");
342 test_dns_name_concat_one(".", "", 0, ".");
343 test_dns_name_concat_one("", ".", 0, ".");
344 test_dns_name_concat_one(".", ".", 0, ".");
345 test_dns_name_concat_one("foo", "bar", 0, "foo.bar");
346 test_dns_name_concat_one("foo.foo", "bar.bar", 0, "foo.foo.bar.bar");
347 test_dns_name_concat_one("foo", NULL, 0, "foo");
348 test_dns_name_concat_one("foo", ".", 0, "foo");
349 test_dns_name_concat_one("foo.", "bar.", 0, "foo.bar");
350 test_dns_name_concat_one(NULL, NULL, 0, ".");
351 test_dns_name_concat_one(NULL, ".", 0, ".");
352 test_dns_name_concat_one(NULL, "foo", 0, "foo");