From: Cyril Hrubis <chrubis@suse.cz>
To: Martin Doucha <mdoucha@suse.cz>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH 1/3] Add tst_validate_children() helper function
Date: Wed, 14 Sep 2022 11:12:27 +0200 [thread overview]
Message-ID: <YyGa+5St+RQGdEd2@yuki> (raw)
In-Reply-To: <20220913151907.26763-2-mdoucha@suse.cz>
Hi!
> The function waits for given number of child processes and validates
> that they have all exited without error.
>
> Signed-off-by: Martin Doucha <mdoucha@suse.cz>
> ---
> include/tst_test.h | 8 ++++++++
> lib/tst_res.c | 37 +++++++++++++++++++++++++++++++++++++
> 2 files changed, 45 insertions(+)
>
> diff --git a/include/tst_test.h b/include/tst_test.h
> index ac52f268c..69e649651 100644
> --- a/include/tst_test.h
> +++ b/include/tst_test.h
> @@ -362,6 +362,14 @@ void tst_set_max_runtime(int max_runtime);
> */
> char *tst_get_tmpdir(void);
>
> +/*
> + * Validates exit status of child processes
> + */
> +int tst_validate_children_(const char *file, const int lineno,
> + unsigned int count);
> +#define tst_validate_children(child_count) \
> + tst_validate_children_(__FILE__, __LINE__, (child_count))
> +
> #ifndef TST_NO_DEFAULT_MAIN
>
> static struct tst_test test;
> diff --git a/lib/tst_res.c b/lib/tst_res.c
> index e0896eb05..cac7484e7 100644
> --- a/lib/tst_res.c
> +++ b/lib/tst_res.c
> @@ -613,3 +613,40 @@ void tst_require_root(void)
> if (geteuid() != 0)
> tst_brkm(TCONF, NULL, "Test needs to be run as root");
> }
> +
> +int tst_validate_children_(const char *file, const int lineno,
> + unsigned int count)
> +{
> + unsigned int i;
> + int status;
> +
> + for (i = 0; i < count; i++) {
> + SAFE_WAITPID(NULL, -1, &status, 0);
> +
> + if (WIFSIGNALED(status)) {
> + tst_res_(file, lineno, TFAIL,
> + "Child killed by signal %d %s",
> + WTERMSIG(status), tst_strsig(WTERMSIG(status)));
> + return 1;
> + }
> +
> + if (WCOREDUMP(status)) {
> + tst_res_(file, lineno, TFAIL, "Child crashed");
> + return 1;
> + }
WCOREDUMP() is subset of WIFSIGNALED() and as such it will be never
triggered here.
> + if (!WIFEXITED(status)) {
> + tst_res_(file, lineno, TFAIL,
> + "Unexpected child status");
> + return 1;
> + }
> +
> + if (WEXITSTATUS(status)) {
> + tst_res_(file, lineno, TFAIL, "Child returned error %d",
> + WEXITSTATUS(status));
> + return 1;
> + }
And we do have tst_strstatus() that actually does all of this so why not
just:
SAFE_WAITPID(NULL, -1, &status, 0);
if (!WIFEXITED(status) || WEXITSTATUS(status)) {
tst_res_(file, lineno, TFAIL, "Child %s", tst_strstatus(status);
return 1;
}
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2022-09-14 9:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-13 15:19 [LTP] [PATCH 0/3] Fix ADSP074 timeouts Martin Doucha
2022-09-13 15:19 ` [LTP] [PATCH 1/3] Add tst_validate_children() helper function Martin Doucha
2022-09-14 9:12 ` Cyril Hrubis [this message]
2022-09-13 15:19 ` [LTP] [PATCH 2/3] Make io_read() runtime-aware Martin Doucha
2022-09-14 9:36 ` Cyril Hrubis
2022-09-13 15:19 ` [LTP] [PATCH 3/3] dio_sparse: Fix child exit code Martin Doucha
2022-09-14 9:37 ` Cyril Hrubis
2022-09-14 9:44 ` Martin Doucha
2022-09-14 9:49 ` Cyril Hrubis
2022-09-14 9:49 ` Martin Doucha
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=YyGa+5St+RQGdEd2@yuki \
--to=chrubis@suse.cz \
--cc=ltp@lists.linux.it \
--cc=mdoucha@suse.cz \
/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