X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Funit%2Ftest_uri.c;h=58042c42e9c218818fac300ba392c26086dc5849;hb=55c9e7cac24318259d4f2549c97f7577b7b52db4;hp=cd95753960006eb301ce440c88a0a042d557d607;hpb=5d7ba9b6a9d159d55ca100761f05cc8a1edf7318;p=lttng-tools.git diff --git a/tests/unit/test_uri.c b/tests/unit/test_uri.c index cd9575396..58042c42e 100644 --- a/tests/unit/test_uri.c +++ b/tests/unit/test_uri.c @@ -30,7 +30,7 @@ int lttng_opt_mi; /* Number of TAP tests in this file */ #define NUM_TESTS 11 -void test_uri_parsing(void) +static void test_uri_parsing(void) { ssize_t size; const char *s_uri1; @@ -75,7 +75,7 @@ void test_uri_parsing(void) uri[1].utype == LTTNG_URI_DST && uri[1].stype == 0 && uri[1].port == 4242 && - strcmp(uri[0].subdir, "my/test/path") == 0 && + strlen(uri[1].subdir) == 0 && strcmp(uri[1].dst.ipv4, "127.0.0.1") == 0, "URI set to net://localhost:8989:4242/my/test/path"); @@ -93,7 +93,7 @@ void test_uri_parsing(void) uri[0].utype == LTTNG_URI_DST && uri[0].stype == 0 && uri[0].port == 8989 && - strlen(uri[1].subdir) == 0 && + strlen(uri[0].subdir) == 0 && strcmp(uri[0].dst.ipv4, "127.0.0.1") == 0 && uri[1].dtype == LTTNG_DST_IPV4 && uri[1].utype == LTTNG_URI_DST && @@ -117,14 +117,14 @@ void test_uri_parsing(void) uri[0].utype == LTTNG_URI_DST && uri[0].stype == 0 && uri[0].port == 8989 && - strlen(uri[1].subdir) == 0 && + strlen(uri[0].subdir) == 0 && strcmp(uri[0].dst.ipv6, "::1") == 0 && uri[1].dtype == LTTNG_DST_IPV6 && uri[1].utype == LTTNG_URI_DST && uri[1].stype == 0 && uri[1].port == 0 && strlen(uri[1].subdir) == 0 && - strcmp(uri[0].dst.ipv6, "::1") == 0, + strcmp(uri[1].dst.ipv6, "::1") == 0, "URI set to net6://[::1]:8989"); if (uri) { @@ -198,7 +198,7 @@ void test_uri_parsing(void) assert(!uri); } -void test_uri_cmp() +static void test_uri_cmp() { struct lttng_uri *uri1, *uri2; const char *s_uri1 = "net://localhost"; @@ -230,7 +230,7 @@ void test_uri_cmp() assert(uri2[0].utype == LTTNG_URI_DST); assert(uri2[0].stype == 0); assert(uri2[0].port == 8989); - assert(strlen(uri2[1].subdir) == 0); + assert(strlen(uri2[0].subdir) == 0); assert(strcmp(uri2[0].dst.ipv4, "127.0.0.1") == 0); assert(uri2[1].dtype == LTTNG_DST_IPV4); assert(uri2[1].utype == LTTNG_URI_DST);