Skip sigfpe_int also for sh3; integer division by zero is not trapped.

This commit is contained in:
rin 2022-05-07 13:14:16 +00:00
parent 78c3f7ec55
commit 1693f5dc09
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_siginfo.c,v 1.46 2021/12/10 20:36:05 andvar Exp $ */
/* $NetBSD: t_siginfo.c,v 1.47 2022/05/07 13:14:16 rin Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -367,7 +367,7 @@ ATF_TC_BODY(sigfpe_int, tc)
struct sigaction sa;
long l = strtol("0", NULL, 10);
#if defined(__powerpc__) || defined(__aarch64__)
#if defined(__aarch64__) || defined(__powerpc__) || defined(__sh3__)
atf_tc_skip("Integer division by zero doesn't trap");
#endif
if (sigsetjmp(sigfpe_int_env, 0) == 0) {