From: Jonathan Rajotte-Julien via lttng-dev <lttng-dev@lists.lttng.org>
To: Anders Wallin <wallinux@gmail.com>
Cc: lttng-dev <lttng-dev@lists.lttng.org>
Subject: Re: [lttng-dev] [PATCH lttng-tools] Fix: test code assumes that child process is schedule to run before parent
Date: Wed, 31 Mar 2021 15:25:09 -0400 (EDT) [thread overview]
Message-ID: <592114658.48857.1617218709305.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <20210331185624.406960-1-wallinux@gmail.com>
> #
> # SPDX-License-Identifier: GPL-2.0-only
>
> -TEST_DESC="LTTng - Event traker test"
> +TEST_DESC="LTTng - Event tracker test"
>
> CURDIR=$(dirname "$0")/
> TESTDIR="$CURDIR/../../.."
> @@ -42,6 +42,8 @@ function prepare_ust_app
>
> $TESTAPP_BIN -i $NR_ITER -w $NR_USEC_WAIT -a "$AFTER_FIRST_PATH" -b
> "$BEFORE_LAST_PATH" &
> CHILD_PID=$!
> + # voluntary context switch to start $TESTAPP_BIN
> + sleep 0.1
A wait on the $AFTER_FIRST_PATH file would be probably more deterministic than a sleep here.
while [ ! -f "${AFTER_FIRST_PATH}" ]; do
sleep 0.1
done
I would also expect something similar for the `prepare_kernel_app` function considering the same race is most probably present and simply not triggered by a chance of luck.
Seems like gen-kernel-test-events does not expose the same sync capabilities here, please use gen-ust-events as an example of how it is done.
Let us know how your testing goes.
Thanks
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev
next prev parent reply other threads:[~2021-03-31 19:25 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-31 18:56 [lttng-dev] [PATCH lttng-tools] Fix: test code assumes that child process is schedule to run before parent Anders Wallin via lttng-dev
2021-03-31 19:25 ` Jonathan Rajotte-Julien via lttng-dev [this message]
2021-03-31 21:09 ` Anders Wallin via lttng-dev
2021-03-31 21:33 ` Jonathan Rajotte-Julien via lttng-dev
2021-04-01 1:21 ` Anders Wallin via lttng-dev
2021-04-01 13:45 ` Jonathan Rajotte-Julien via lttng-dev
2021-04-01 15:02 ` Anders Wallin via lttng-dev
2021-04-01 16:19 ` Mathieu Desnoyers via lttng-dev
2021-04-01 16:21 ` Mathieu Desnoyers via lttng-dev
2021-04-01 16:33 ` Anders Wallin via lttng-dev
-- strict thread matches above, loose matches on Subject: below --
2021-04-01 16:37 Anders Wallin via lttng-dev
2021-04-07 15:31 ` Mathieu Desnoyers via lttng-dev
2021-04-08 9:22 ` Anders Wallin via lttng-dev
2021-04-08 12:48 ` Mathieu Desnoyers via lttng-dev
2021-04-08 15:47 ` Anders Wallin via lttng-dev
2021-04-09 14:41 Anders Wallin via lttng-dev
2021-04-09 19:12 ` Mathieu Desnoyers via lttng-dev
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=592114658.48857.1617218709305.JavaMail.zimbra@efficios.com \
--to=lttng-dev@lists.lttng.org \
--cc=jonathan.rajotte-julien@efficios.com \
--cc=wallinux@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.