Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/gen PR/55715: pmax testbed panics with "asser...



details:   https://anonhg.NetBSD.org/src/rev/7613acc842a2
branches:  trunk
changeset: 958568:7613acc842a2
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Jan 10 20:46:14 2021 +0000

description:
PR/55715: pmax testbed panics with "assertion "asid == curcpu()->ci_pmap_asid_cur" failed"

disable the sigbus_adraln test on qemu for now

diffstat:

 tests/lib/libc/gen/t_siginfo.c |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (22 lines):

diff -r 23d95e09390b -r 7613acc842a2 tests/lib/libc/gen/t_siginfo.c
--- a/tests/lib/libc/gen/t_siginfo.c    Sun Jan 10 19:26:31 2021 +0000
+++ b/tests/lib/libc/gen/t_siginfo.c    Sun Jan 10 20:46:14 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_siginfo.c,v 1.42 2020/10/13 06:55:25 rin Exp $ */
+/* $NetBSD: t_siginfo.c,v 1.43 2021/01/10 20:46:14 skrll Exp $ */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -481,6 +481,12 @@
        atf_tc_skip("No SIGBUS signal for unaligned accesses");
 #endif
 
+#if defined(__mips__)
+       if (isQEMU())
+               atf_tc_expect_fail("QEMU fails to trap unaligned accesses with "
+                   "correct ENTRYHI");
+#endif
+
        sa.sa_flags = SA_SIGINFO;
        sa.sa_sigaction = sigbus_action;
        sigemptyset(&sa.sa_mask);



Home | Main Index | Thread Index | Old Index