Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Aug 2022 00:20:12 GMT
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 66ea3876d70b - stable/13 - basic_signal test: temporarily skip trap_signal_test on i386
Message-ID:  <202208170020.27H0KCJs031071@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=66ea3876d70b7a205f64962d743324f65edec22e

commit 66ea3876d70b7a205f64962d743324f65edec22e
Author:     Li-Wen Hsu <lwhsu@FreeBSD.org>
AuthorDate: 2022-08-16 22:03:37 +0000
Commit:     Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2022-08-17 00:18:46 +0000

    basic_signal test: temporarily skip trap_signal_test on i386
    
    This case crashes a bhyve VM.
    
    PR:             265889
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit c04721e35ff0e8220c88d5b10f068dba18629f7e)
    (cherry picked from commit beeeb40bca06c8ebc8953274bbc5759fb432fab2)
---
 tests/sys/kern/basic_signal.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/sys/kern/basic_signal.c b/tests/sys/kern/basic_signal.c
index 1dcb9ff064fc..0183d117fdb4 100644
--- a/tests/sys/kern/basic_signal.c
+++ b/tests/sys/kern/basic_signal.c
@@ -106,6 +106,10 @@ ATF_TC_HEAD(trap_signal_test, tc)
 
 ATF_TC_BODY(trap_signal_test, tc)
 {
+#if defined(__i386__)
+	if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+		atf_tc_skip("https://bugs.freebsd.org/265889");
+#endif
 	/*
 	 * Setup the signal handlers
 	 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202208170020.27H0KCJs031071>