Disable failing test cases in CI:
sys.netipsec.tunnel.aes_cbc_128_hmac_sha1.v4 sys.netipsec.tunnel.aes_cbc_256_hmac_sha2_256.v4 sys.netipsec.tunnel.aesni_aes_cbc_128_hmac_sha1.v4 sys.netipsec.tunnel.aesni_aes_cbc_256_hmac_sha2_256.v4 PR: 246737 Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
0aca9ecd85
commit
c4e61d8568
@ -11,6 +11,10 @@ v4_head()
|
||||
|
||||
v4_body()
|
||||
{
|
||||
if [ "$(atf_config_get ci false)" = "true" ]; then
|
||||
atf_skip "https://bugs.freebsd.org/246737"
|
||||
fi
|
||||
|
||||
# Unload AESNI module if loaded
|
||||
kldstat -q -n aesni && kldunload aesni
|
||||
|
||||
|
@ -11,6 +11,10 @@ v4_head()
|
||||
|
||||
v4_body()
|
||||
{
|
||||
if [ "$(atf_config_get ci false)" = "true" ]; then
|
||||
atf_skip "https://bugs.freebsd.org/246737"
|
||||
fi
|
||||
|
||||
# load AESNI module if not already
|
||||
kldstat -q -n aesni || kldload aesni
|
||||
|
||||
|
@ -11,6 +11,10 @@ v4_head()
|
||||
|
||||
v4_body()
|
||||
{
|
||||
if [ "$(atf_config_get ci false)" = "true" ]; then
|
||||
atf_skip "https://bugs.freebsd.org/246737"
|
||||
fi
|
||||
|
||||
# load AESNI module if not already
|
||||
kldstat -q -n aesni || kldload aesni
|
||||
|
||||
|
@ -11,6 +11,10 @@ v4_head()
|
||||
|
||||
v4_body()
|
||||
{
|
||||
if [ "$(atf_config_get ci false)" = "true" ]; then
|
||||
atf_skip "https://bugs.freebsd.org/246737"
|
||||
fi
|
||||
|
||||
# Unload AESNI module if loaded
|
||||
kldstat -q -n aesni && kldunload aesni
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user