From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v2] waitid10: raise SIGFPE directly
Date: Thu, 12 May 2022 15:10:02 +0200 [thread overview]
Message-ID: <20220512131002.26093-1-chrubis@suse.cz> (raw)
The SIGFPE for division by zero is actually not send for quite a few
architectures (ARM for instance) and even on x86 and x86_64 we need to
work around compiler to make it generate code that actually triggers the
condition.
So this patch fixes the test in the simplest way possible. the child
just directly raises SIGFPE instead.
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
testcases/kernel/syscalls/waitid/waitid10.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/testcases/kernel/syscalls/waitid/waitid10.c b/testcases/kernel/syscalls/waitid/waitid10.c
index e75edd07e..388b31cc9 100644
--- a/testcases/kernel/syscalls/waitid/waitid10.c
+++ b/testcases/kernel/syscalls/waitid/waitid10.c
@@ -24,12 +24,8 @@ static void run(void)
pid_t pidchild;
pidchild = SAFE_FORK();
- if (!pidchild) {
- volatile int a, zero = 0;
-
- a = 1 / zero;
- exit(a);
- }
+ if (!pidchild)
+ raise(SIGFPE);
TST_EXP_PASS(waitid(P_ALL, 0, infop, WEXITED));
TST_EXP_EQ_LI(infop->si_pid, pidchild);
--
2.35.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next reply other threads:[~2022-05-12 13:08 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-12 13:10 Cyril Hrubis [this message]
2022-05-12 19:30 ` [LTP] [PATCH v2] waitid10: raise SIGFPE directly Jan Stancek
2022-05-13 2:02 ` Li Wang
2022-05-13 9:07 ` Cyril Hrubis
2022-05-13 9:24 ` Li Wang
2022-05-13 12:38 ` Cyril Hrubis
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=20220512131002.26093-1-chrubis@suse.cz \
--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