From: Richard Palethorpe <rpalethorpe@suse.de>
To: Zhao Gongyi <zhaogongyi@huawei.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH] syscalls/nice01: Add test nice(-1) and nice(-50)
Date: Mon, 28 Nov 2022 14:26:52 +0000 [thread overview]
Message-ID: <87lenvuotu.fsf@suse.de> (raw)
In-Reply-To: <20221116034910.37030-1-zhaogongyi@huawei.com>
Hello,
Zhao Gongyi via ltp <ltp@lists.linux.it> writes:
> 1. Add test verify that the errno is zero when callling of nice
> legitimately return -1.(nice(-1), the default nice is usally 0)
> 2. Add test verify that user of root can decrease the nice value of
> the process successfully by passing a lower increment
> value (< min. applicable limits) to nice() system call.(nice(-50))
>
> Signed-off-by: Zhao Gongyi <zhaogongyi@huawei.com>
> ---
> testcases/kernel/syscalls/nice/nice01.c | 27 ++++++++++++++-----------
> 1 file changed, 15 insertions(+), 12 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/nice/nice01.c b/testcases/kernel/syscalls/nice/nice01.c
> index 876246180..bc022a265 100644
> --- a/testcases/kernel/syscalls/nice/nice01.c
> +++ b/testcases/kernel/syscalls/nice/nice01.c
> @@ -17,29 +17,31 @@
> #include <sys/resource.h>
> #include "tst_test.h"
>
> -#define NICEINC -12
> -#define MIN_PRIO -20
> +#define MIN_PRIO -20
>
> -static void verify_nice(void)
> +static int nice_inc[] = {-1, -12, -50};
> +
> +static void verify_nice(unsigned int i)
> {
> int new_nice;
> int orig_nice;
> int exp_nice;
> + int inc = nice_inc[i];
>
> orig_nice = SAFE_GETPRIORITY(PRIO_PROCESS, 0);
>
> - TEST(nice(NICEINC));
> + TEST(nice(inc));
>
> - exp_nice = MAX(MIN_PRIO, (orig_nice + NICEINC));
> + exp_nice = MAX(MIN_PRIO, (orig_nice + inc));
>
> if (TST_RET != exp_nice) {
> tst_res(TFAIL | TTERRNO, "nice(%d) returned %li, expected %i",
> - NICEINC, TST_RET, exp_nice);
> + inc, TST_RET, exp_nice);
> return;
> }
>
> if (TST_ERR) {
> - tst_res(TFAIL | TTERRNO, "nice(%d) failed", NICEINC);
> + tst_res(TFAIL | TTERRNO, "nice(%d) failed", inc);
> return;
> }
>
> @@ -47,18 +49,19 @@ static void verify_nice(void)
>
> if (new_nice != exp_nice) {
> tst_res(TFAIL, "Process priority %i, expected %i",
> - new_nice, orig_nice + NICEINC);
> + new_nice, exp_nice);
> return;
> }
>
> - tst_res(TPASS, "nice(%d) passed", NICEINC);
> + tst_res(TPASS, "nice(%d) passed", inc);
>
> - TEST(nice(-NICEINC));
> + TEST(setpriority(PRIO_PROCESS, 0, orig_nice));
This is the nice test not the setpriority test (which also has a SAFE_ variant).
> if (TST_ERR)
> - tst_brk(TBROK | TTERRNO, "nice(%d) failed", -NICEINC);
> + tst_brk(TBROK | TTERRNO, "setpriority(%d) failed", orig_nice);
> }
>
> static struct tst_test test = {
> - .test_all = verify_nice,
> .needs_root = 1,
> + .test = verify_nice,
> + .tcnt = ARRAY_SIZE(nice_inc),
> };
> --
> 2.17.1
--
Thank you,
Richard.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2022-11-28 14:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-16 3:49 [LTP] [PATCH] syscalls/nice01: Add test nice(-1) and nice(-50) Zhao Gongyi via ltp
2022-11-28 14:26 ` Richard Palethorpe [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-11-29 8:17 zhaogongyi via ltp
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=87lenvuotu.fsf@suse.de \
--to=rpalethorpe@suse.de \
--cc=ltp@lists.linux.it \
--cc=zhaogongyi@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 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.