From: jeremie.galarneau@efficios.com (Jérémie Galarneau)
Subject: [lttng-dev] [PATCH lttng-tools] Fix: tests: incorrect uri index
Date: Wed, 18 May 2016 14:24:32 -0400 [thread overview]
Message-ID: <CA+jJMxuHwc7WHe6vE2pjB=zC8BTpXsJrjgGzuth27SrRtwkv9Q@mail.gmail.com> (raw)
In-Reply-To: <1463491217-20451-1-git-send-email-mathieu.desnoyers@efficios.com>
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3210 bytes --]
Merged, thanks!
Jérémie
On Tue, May 17, 2016 at 9:20 AM, Mathieu Desnoyers
<mathieu.desnoyers at efficios.com> wrote:
> 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 <mathieu.desnoyers at efficios.com>
> ---
> tests/unit/test_uri.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tests/unit/test_uri.c b/tests/unit/test_uri.c
> index cd95753..61e89e1 100644
> --- a/tests/unit/test_uri.c
> +++ b/tests/unit/test_uri.c
> @@ -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) {
> @@ -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);
> --
> 2.1.4
>
--
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com
parent reply other threads:[~2016-05-18 18:24 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <1463491217-20451-1-git-send-email-mathieu.desnoyers@efficios.com>]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CA+jJMxuHwc7WHe6vE2pjB=zC8BTpXsJrjgGzuth27SrRtwkv9Q@mail.gmail.com' \
--to=jeremie.galarneau@efficios.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox