mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
Temporarily skip sys.netgraph.hub.loop on RISC-V in CI
This case panics kernel. PR: 259157 Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
364cf0304c
commit
d5fd5cdc06
1 changed files with 5 additions and 0 deletions
|
|
@ -127,6 +127,11 @@ ATF_TC_BODY(loop, dummy)
|
|||
int i;
|
||||
char msg[] = "LOOP Alert!";
|
||||
|
||||
#if defined(__riscv)
|
||||
if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
|
||||
atf_tc_skip("https://bugs.freebsd.org/259157");
|
||||
#endif
|
||||
|
||||
ng_errors(PASS);
|
||||
ng_shutdown("hub1:");
|
||||
ng_shutdown("hub2:");
|
||||
|
|
|
|||
Loading…
Reference in a new issue