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/8065427e9b40
branches:  trunk
changeset: 949364:8065427e9b40
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 80ca5e621593 -r 8065427e9b40 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