X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Funit%2Ftest_uri.c;h=61e89e120182833d0cfb038a71d9ccade6d16ae6;hp=7cac95d98e099a567a9a2f2f68bf0697ef688b5e;hb=b12e37246d50f74583cd29b4d766f6f4fb4e8656;hpb=ad7c9c188f0e6336577ccdc7e6e0aea409a88a9d diff --git a/tests/unit/test_uri.c b/tests/unit/test_uri.c index 7cac95d98..61e89e120 100644 --- a/tests/unit/test_uri.c +++ b/tests/unit/test_uri.c @@ -25,6 +25,7 @@ /* For error.h */ int lttng_opt_quiet = 1; int lttng_opt_verbose = 3; +int lttng_opt_mi; /* Number of TAP tests in this file */ #define NUM_TESTS 11 @@ -74,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"); @@ -92,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 && @@ -107,7 +108,7 @@ void test_uri_parsing(void) uri = NULL; } - s_uri1 = "net6://localhost:8989"; + s_uri1 = "net6://[::1]:8989"; size = uri_parse(s_uri1, &uri); @@ -116,15 +117,15 @@ 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, - "URI set to net6://localhost:8989"); + strcmp(uri[1].dst.ipv6, "::1") == 0, + "URI set to net6://[::1]:8989"); if (uri) { uri_free(uri); @@ -229,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);