Skip to content

Commit

Permalink
Fix: tests: incorrect uri index
Browse files Browse the repository at this point in the history
Initial issue found by Coverity:

CID 1322864 (#1 of 1): Constant expression result
(CONSTANT_EXPRESSION_RESULT)impossible_and: The "and" condition size ==
2L && (uri + 0).dtype == LTTNG_DST_IPV4 && (uri + 0).utype ==
LTTNG_URI_DST && (uri + 0).stype == 0U && (uri + 0).port == 8989 &&
strcmp((uri + 0).subdir, "my/test/path") == 0 && strcmp((uri +
0).dst.ipv4, "127.0.0.1") == 0 && (uri + 1).dtype == LTTNG_DST_IPV4 &&
(uri + 1).utype == LTTNG_URI_DST && (uri + 1).stype == 0U && (uri +
1).port == 4242 && strcmp((uri + 0).subdir, "my/test/path") == 0 &&
strcmp((uri + 1).dst.ipv4, "127.0.0.1") == 0 can never be true because
(uri + 0).subdir cannot be equal to two different values at the same
time.

Review of the test source file led to further fixes.

Signed-off-by: Mathieu Desnoyers <[email protected]>
Signed-off-by: Jérémie Galarneau <[email protected]>
  • Loading branch information
compudj authored and jgalar committed May 18, 2016
1 parent ec93758 commit ee059b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/unit/test_uri.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand All @@ -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 &&
Expand All @@ -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) {
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit ee059b9

Please sign in to comment.