git: c04721e35ff0 - main - basic_signal test: temporarily skip trap_signal_test on i386
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 16 Aug 2022 22:05:31 UTC
The branch main has been updated by lwhsu: URL: https://cgit.FreeBSD.org/src/commit/?id=c04721e35ff0e8220c88d5b10f068dba18629f7e commit c04721e35ff0e8220c88d5b10f068dba18629f7e 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-16 22:03:37 +0000 basic_signal test: temporarily skip trap_signal_test on i386 This case crashes a bhyve VM. PR: 265889 Sponsored by: The FreeBSD Foundation --- 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..be37b0137151 100644 --- a/tests/sys/kern/basic_signal.c +++ b/tests/sys/kern/basic_signal.c @@ -164,6 +164,10 @@ ATF_TC_HEAD(signal_test_T32_to_A32, tc) t32_isa ATF_TC_BODY(signal_test_T32_to_A32, 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 */