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:
Li-Wen Hsu 2020-05-26 06:55:03 +00:00
parent 0aca9ecd85
commit c4e61d8568
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=361497
4 changed files with 16 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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