mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
rc/tests: Skip oomprotect tests in a jail
oomprotect cannot be used in a jail. Reviewed by: bnovkov, christos, markj Approved by: bnovkov (mentor), christos (mentor), markj (mentor) MFC after: 1 week
This commit is contained in:
parent
e018265679
commit
6fa42b91ca
@ -35,6 +35,10 @@ oomprotect_all_head()
|
||||
|
||||
oomprotect_all_body()
|
||||
{
|
||||
if [ "$(sysctl -n security.jail.jailed)" != 0 ]; then
|
||||
atf_skip "protect(1) cannot be used in a jail"
|
||||
fi
|
||||
|
||||
__name="$(atf_get ident)"
|
||||
__pidfile="$(mktemp -t "${__name}.pid")"
|
||||
__childpidfile="$(mktemp -t "${__name}.childpid")"
|
||||
@ -72,6 +76,10 @@ oomprotect_yes_head()
|
||||
|
||||
oomprotect_yes_body()
|
||||
{
|
||||
if [ "$(sysctl -n security.jail.jailed)" != 0 ]; then
|
||||
atf_skip "protect(1) cannot be used in a jail"
|
||||
fi
|
||||
|
||||
__name="$(atf_get ident)"
|
||||
__pidfile="$(mktemp -t "${__name}.pid")"
|
||||
__script=$(mktemp -t "${__name}.script")
|
||||
|
Loading…
Reference in New Issue
Block a user