mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
a0efcf6400
commit
0932ee9fa0
2 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue