From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH V2] kernel/syscall/setrlimit05.c: use a legal bad address for mips
Date: Tue, 6 Nov 2018 13:20:55 +0100 [thread overview]
Message-ID: <20181106122055.GA4834@rei.lan> (raw)
In-Reply-To: <1541488193-67790-2-git-send-email-hongzhi.song@windriver.com>
Hi!
> This testcase fails on mips32. The process is killed by SIGBUS which
> doesn't return EFAULT as expect.
>
> This is because:
> ((void *)-1) is not a legal bad address which causes the process
> killed by SIGBUG on mips.
>
> 'tst_get_bad_addr()' returns an address that should work on mips
> and other arches.
Generally looks good, minor nits pointed out below.
> Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com>
> ---
> testcases/kernel/syscalls/setrlimit/setrlimit05.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/testcases/kernel/syscalls/setrlimit/setrlimit05.c b/testcases/kernel/syscalls/setrlimit/setrlimit05.c
> index e716722..92ff33c 100644
> --- a/testcases/kernel/syscalls/setrlimit/setrlimit05.c
> +++ b/testcases/kernel/syscalls/setrlimit/setrlimit05.c
> @@ -26,6 +26,8 @@
>
> #include "tst_test.h"
>
> +static void *bad_addr;
> +
> static void verify_setrlimit(void)
> {
> int status;
> @@ -33,7 +35,7 @@ static void verify_setrlimit(void)
>
> pid = SAFE_FORK();
> if (!pid) {
> - TEST(setrlimit(RLIMIT_NOFILE, (void *) -1));
> + TEST(setrlimit(RLIMIT_NOFILE, (struct rlimit *)bad_addr));
^
This cast is not
needed, in C void *
pointer is converted
to any other pointer
automatically.
> if (TST_RET != -1) {
> tst_res(TFAIL, "setrlimit() succeeded unexpectedly");
> exit(0);
> @@ -67,7 +69,13 @@ static void verify_setrlimit(void)
> tst_res(TBROK, "child %s", tst_strstatus(status));
> }
>
> +static void setup(void)
> +{
> + bad_addr = tst_get_bad_addr(NULL);
You really should use tabs instead of spaces for indentation.
> +}
> +
> static struct tst_test test = {
> .test_all = verify_setrlimit,
> .forks_child = 1,
> + .setup = setup,
Here as well.
> };
> --
> 2.8.1
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
--
Cyril Hrubis
chrubis@suse.cz
prev parent reply other threads:[~2018-11-06 12:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-06 7:09 [LTP] [PATCH V2] setrlimit05: Use another method to get bad address Hongzhi.Song
2018-11-06 7:09 ` [LTP] [PATCH V2] kernel/syscall/setrlimit05.c: use a legal bad address for mips Hongzhi.Song
2018-11-06 12:20 ` Cyril Hrubis [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=20181106122055.GA4834@rei.lan \
--to=chrubis@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