From: Petr Vorel <pvorel@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 2/2] syscalls/tkill: Convert tkill02 to the new API
Date: Mon, 26 Apr 2021 13:12:24 +0200 [thread overview]
Message-ID: <YIagGNrM6az0oMk6@pevik> (raw)
In-Reply-To: <20210422065732.61222-3-xieziyao@huawei.com>
Hi,
LGTM with very minor changes.
Reviewed-by: Petr Vorel <pvorel@suse.cz>
> +static pid_t expired_pid;
> static pid_t inval_tid = -1;
> -static pid_t unused_tid;
IMHO unused_tid is better describe what the variable holds.
> -
> -void cleanup(void)
> -{
> - tst_rmdir();
> -}
> -
> -void setup(void)
> -{
> - TEST_PAUSE;
> - tst_tmpdir();
> -
> - unused_tid = tst_get_unused_pid(cleanup);
> -}
> struct test_case_t {
> int *tid;
> int exp_errno;
> -} test_cases[] = {
> - {&inval_tid, EINVAL},
> - {&unused_tid, ESRCH}
> + const char *desc;
> +} tc[] = {
> + {&inval_tid, EINVAL, "inval_tid"},
> + {&expired_pid, ESRCH, "expired_pid"}
Well, there is no point to print variable name. Better would be "invalid TID"
and "unused TID". But IMHO just writing what we expect is enough.
It could be:
#define ERRNO_DESC(x) .exp_errno = x, .desc = "exp" #x
...
{&inval_tid, ERRNO_DESC(EINVAL},
{&expired_pid, ERRNO_DESC(ESRCH}
But we have tst_strerrno(), thus just:
struct test_case_t {
int *tid;
int exp_errno;
} tc[] = {
{&inval_tid, EINVAL},
{&unused_tid, ESRCH}
};
...
TST_EXP_FAIL(tst_syscall(__NR_tkill, *(tc[i].tid), SIGUSR1),
tc[i].exp_errno, "tst_syscall(__NR_tkill) expecting %s",
tst_strerrno(tc[i].exp_errno));
I'll merge code below.
Kind regards,
Petr
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) Crackerjack Project., 2007
* Ported from Crackerjack to LTP by Manas Kumar Nayak maknayak@in.ibm.com>
*/
/*\
* [Description]
*
* Basic tests for the tkill() errors.
*
* [Algorithm]
*
* - EINVAL on an invalid thread ID
* - ESRCH when no process with the specified thread ID exists
*/
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <signal.h>
#include <sys/syscall.h>
#include "lapi/syscalls.h"
#include "tst_test.h"
static pid_t unused_tid;
static pid_t inval_tid = -1;
struct test_case_t {
int *tid;
int exp_errno;
} tc[] = {
{&inval_tid, EINVAL},
{&unused_tid, ESRCH}
};
static void setup(void)
{
unused_tid = tst_get_unused_pid();
}
static void run(unsigned int i)
{
TST_EXP_FAIL(tst_syscall(__NR_tkill, *(tc[i].tid), SIGUSR1),
tc[i].exp_errno, "tst_syscall(__NR_tkill) expecting %s",
tst_strerrno(tc[i].exp_errno));
}
static struct tst_test test = {
.tcnt = ARRAY_SIZE(tc),
.needs_tmpdir = 1,
.setup = setup,
.test = run,
};
next prev parent reply other threads:[~2021-04-26 11:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-22 6:57 [LTP] [PATCH 0/2] syscalls/tkill: Convert tkill{01, 02} to the new API Xie Ziyao
2021-04-22 6:57 ` [LTP] [PATCH 1/2] syscalls/tkill: Convert tkill01 " Xie Ziyao
2021-04-26 10:31 ` Petr Vorel
2021-04-26 11:24 ` xieziyao
2021-04-26 12:55 ` Petr Vorel
2021-04-27 1:49 ` xieziyao
2021-04-28 12:11 ` Cyril Hrubis
2021-04-28 18:04 ` Petr Vorel
2021-04-29 2:02 ` xieziyao
2021-04-22 6:57 ` [LTP] [PATCH 2/2] syscalls/tkill: Convert tkill02 " Xie Ziyao
2021-04-26 11:12 ` Petr Vorel [this message]
2021-04-26 11:35 ` xieziyao
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=YIagGNrM6az0oMk6@pevik \
--to=pvorel@suse.cz \
--cc=ltp@lists.linux.it \
/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