mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: He Kuang <hekuang@huawei.com>
Cc: acme@kernel.org, jolsa@kernel.org, mingo@redhat.com,
	a.p.zijlstra@chello.nl, wangnan0@huawei.com,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] perf tests: Fix to get negative exit codes
Date: Mon, 11 May 2015 15:17:07 +0200	[thread overview]
Message-ID: <20150511131707.GB13337@krava.redhat.com> (raw)
In-Reply-To: <1431347316-30401-1-git-send-email-hekuang@huawei.com>

On Mon, May 11, 2015 at 12:28:35PM +0000, He Kuang wrote:
> WEXITSTATUS consists of the least significant 8 bits of the status
> argument, so we should convert the value to signed char if we have valid
> negative exit codes. And the return value of test->func() contains
> negative values:
> 
>   enum {
>           TEST_OK   =  0,
>           TEST_FAIL = -1,
>           TEST_SKIP = -2,
>   };
> 
> Before this patch:
> 
>   $ perf test -v 1
>   ...
>   test child finished with 254
>   ---- end ----
>   vmlinux symtab matches kallsyms: FAILED!
> 
> After this patch:
> 
>   $ perf test -v 1
>   ...
>   test child finished with -2
>   ---- end ----
>   vmlinux symtab matches kallsyms: Skip

Acked-by: Jiri Olsa <jolsa@kernel.org>

thanks,
jirka

> 
> Signed-off-by: He Kuang <hekuang@huawei.com>
> ---
>  tools/perf/tests/builtin-test.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c
> index 4f40981..f42af98 100644
> --- a/tools/perf/tests/builtin-test.c
> +++ b/tools/perf/tests/builtin-test.c
> @@ -219,7 +219,7 @@ static int run_test(struct test *test)
>  	wait(&status);
>  
>  	if (WIFEXITED(status)) {
> -		err = WEXITSTATUS(status);
> +		err = (signed char)WEXITSTATUS(status);
>  		pr_debug("test child finished with %d\n", err);
>  	} else if (WIFSIGNALED(status)) {
>  		err = -1;
> -- 
> 1.8.5.2
> 

  parent reply	other threads:[~2015-05-11 13:17 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-11 12:28 He Kuang
2015-05-11 12:28 ` [PATCH 2/2] perf trace: Fix typo in builtin-trace.c He Kuang
2015-05-11 14:06   ` Arnaldo Carvalho de Melo
2015-05-15  6:43   ` [tip:perf/core] perf trace: Removed duplicated NULL test tip-bot for He Kuang
2015-05-11 13:17 ` Jiri Olsa [this message]
2015-05-11 14:07   ` [PATCH 1/2] perf tests: Fix to get negative exit codes Arnaldo Carvalho de Melo
2015-05-15  6:44 ` [tip:perf/core] " tip-bot for He Kuang

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=20150511131707.GB13337@krava.redhat.com \
    --to=jolsa@redhat.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@kernel.org \
    --cc=hekuang@huawei.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=wangnan0@huawei.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

all inboxes | Powered by JetHome®