All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Bezdeka, Florian" <florian.bezdeka@siemens.com>
To: "xenomai@xenomai.org" <xenomai@xenomai.org>,
	"jan.kiszka@siemens.com" <jan.kiszka@siemens.com>
Subject: Re: [PATCH] testsuite/smokey: Fixing a registry leak of the posix_select test
Date: Fri, 13 Aug 2021 13:03:51 +0000	[thread overview]
Message-ID: <e3d9945508442b17a07706a096ffd0ee429c1b1d.camel@siemens.com> (raw)
In-Reply-To: <36d9bb86-b497-d8dc-b57a-f30bb13f1683@siemens.com>

On Fri, 2021-08-13 at 08:59 +0200, Jan Kiszka wrote:
> On 12.08.21 18:38, Florian Bezdeka wrote:
> > According to POSIX message queues have kernel persistence, which means
> > they are not cleaned up until the next reboot.
> > 
> > The test has a mq_unlink() as "precondition", so it will clean up
> > failed test runs silently but /proc/xenomai/registry/usage will still
> > report a "leak" once the test has completed.
> > 
> > Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
> > ---
> >  testsuite/smokey/posix-select/posix-select.c | 2 ++
> >  1 file changed, 2 insertions(+)
> > 
> > diff --git a/testsuite/smokey/posix-select/posix-select.c b/testsuite/smokey/posix-select/posix-select.c
> > index e9bf938b3..0a59e4968 100644
> > --- a/testsuite/smokey/posix-select/posix-select.c
> > +++ b/testsuite/smokey/posix-select/posix-select.c
> > @@ -138,6 +138,8 @@ static int run_posix_select(struct smokey_test *t, int argc, char *const argv[])
> >  	usleep(300000);
> >  	smp_rmb();
> >  	ret = test_status;
> > +
> > +	mq_unlink("/select_test_mq");
> >  out:
> >  	pthread_join(tcb, NULL);
> >  	
> > 
> 
> Why only cleaning up on successful runs, ie. why doing this before the
> "out:" label?

You are right, that's wrong. And we should wait for the tcb thread to
finish as well. So kind of double fault. Testing v2...

Florian

> 
> Jan
> 


      reply	other threads:[~2021-08-13 13:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-12 16:38 [PATCH] testsuite/smokey: Fixing a registry leak of the posix_select test Florian Bezdeka
2021-08-13  6:59 ` Jan Kiszka
2021-08-13 13:03   ` Bezdeka, Florian [this message]

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=e3d9945508442b17a07706a096ffd0ee429c1b1d.camel@siemens.com \
    --to=florian.bezdeka@siemens.com \
    --cc=jan.kiszka@siemens.com \
    --cc=xenomai@xenomai.org \
    /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.