Module Name: src Committed By: rin Date: Wed Sep 4 02:20:49 UTC 2024
Modified Files: src/tests/lib/libc/gen: t_siginfo.c Log Message: t_siginfo:sigbus_adraln: Skip rather than expect_fail on x86 This is an architecture-defined behavior, not a failure. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/tests/lib/libc/gen/t_siginfo.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/lib/libc/gen/t_siginfo.c diff -u src/tests/lib/libc/gen/t_siginfo.c:1.53 src/tests/lib/libc/gen/t_siginfo.c:1.54 --- src/tests/lib/libc/gen/t_siginfo.c:1.53 Sat Jun 29 06:58:23 2024 +++ src/tests/lib/libc/gen/t_siginfo.c Wed Sep 4 02:20:49 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: t_siginfo.c,v 1.53 2024/06/29 06:58:23 rin Exp $ */ +/* $NetBSD: t_siginfo.c,v 1.54 2024/09/04 02:20:49 rin Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -442,7 +442,7 @@ sigbus_action(int signo, siginfo_t *info ATF_REQUIRE_EQ(info->si_code, BUS_ADRALN); #if defined(__i386__) || defined(__x86_64__) - atf_tc_expect_fail("x86 architecture does not correctly " + atf_tc_skip("x86 architecture does not correctly " "report the address where the unaligned access occurred"); #endif ATF_REQUIRE_EQ(info->si_addr, (volatile void *)addr);