Temporarily skip tests panic i386 kernel in CI

lib.libbe.be_create.libbe_create
sbin.bectl.bectl_test.bectl_create

PR:		249055
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2020-09-02 19:18:27 +00:00
parent a0efcf6400
commit 0932ee9fa0
2 changed files with 10 additions and 0 deletions

View File

@ -88,6 +88,11 @@ libbe_create_head()
}
libbe_create_body()
{
if [ "$(atf_config_get ci false)" = "true" ] && \
[ "$(uname -p)" = "i386" ]; then
atf_skip "https://bugs.freebsd.org/249055"
fi
cwd=$(atf_get_srcdir)
zpool=$(make_zpool_name)
disk=${cwd}/disk.img

View File

@ -93,6 +93,11 @@ bectl_create_head()
}
bectl_create_body()
{
if [ "$(atf_config_get ci false)" = "true" ] && \
[ "$(uname -p)" = "i386" ]; then
atf_skip "https://bugs.freebsd.org/249055"
fi
cwd=$(realpath .)
zpool=$(make_zpool_name)
disk=${cwd}/disk.img