Searched defs:test_dns_name_concat_one (Results 1 - 1 of 1) sorted by relevance

/systemd/src/test/
H A Dtest-dns-domain.c333 static void test_dns_name_concat_one(const char *a, const char *b, int r, const char *result) { function
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("fo
[all...]

Completed in 9 milliseconds