mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
basic_signal test: really skip trap_signal_test on i386
PR: 265889
Fixes: c04721e35f
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
128b0398a1
commit
beeeb40bca
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
@ -164,10 +168,6 @@ 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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue