<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small"><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, May 12, 2022 at 9:08 PM Cyril Hrubis <<a href="mailto:chrubis@suse.cz">chrubis@suse.cz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The SIGFPE for division by zero is actually not send for quite a few<br>
architectures (ARM for instance) and even on x86 and x86_64 we need to<br>
work around compiler to make it generate code that actually triggers the<br>
condition.<br>
<br>
So this patch fixes the test in the simplest way possible. the child<br>
just directly raises SIGFPE instead.<br>
<br>
Signed-off-by: Cyril Hrubis <<a href="mailto:chrubis@suse.cz" target="_blank">chrubis@suse.cz</a>><br>
---<br>
 testcases/kernel/syscalls/waitid/waitid10.c | 8 ++------<br>
 1 file changed, 2 insertions(+), 6 deletions(-)<br>
<br>
diff --git a/testcases/kernel/syscalls/waitid/waitid10.c b/testcases/kernel/syscalls/waitid/waitid10.c<br>
index e75edd07e..388b31cc9 100644<br>
--- a/testcases/kernel/syscalls/waitid/waitid10.c<br>
+++ b/testcases/kernel/syscalls/waitid/waitid10.c<br>
@@ -24,12 +24,8 @@ static void run(void)<br>
        pid_t pidchild;<br>
<br>
        pidchild = SAFE_FORK();<br>
-       if (!pidchild) {<br>
-               volatile int a, zero = 0;<br>
-<br>
-               a = 1 / zero;<br>
-               exit(a);<br>
-       }<br>
+       if (!pidchild)<br>
+               raise(SIGFPE);<br></blockquote><div><br></div><div><div class="gmail_default" style="font-size:small">Better to have code comments to explain the reason here,</div><div class="gmail_default" style="font-size:small">just for better readability.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><div class="gmail_default">And vote for merging before the new release as well.</div><div class="gmail_default"><br></div></div><div class="gmail_default" style="font-size:small">Reviewed-by: Li Wang <<a href="mailto:liwang@redhat.com">liwang@redhat.com</a>></div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
        TST_EXP_PASS(waitid(P_ALL, 0, infop, WEXITED));<br>
        TST_EXP_EQ_LI(infop->si_pid, pidchild);<br>
-- <br>
2.35.1<br>
<br>
<br>
-- <br>
Mailing list info: <a href="https://lists.linux.it/listinfo/ltp" rel="noreferrer" target="_blank">https://lists.linux.it/listinfo/ltp</a><br>
<br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Regards,<br></div><div>Li Wang<br></div></div></div></div>