summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-08-05 09:53:22 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-08-05 18:18:06 +0200
commit8fd79d35742c799c59cfc090d8cfdbe1f93b4f3a (patch)
treefb33b199ac7a62426139894952e5c89d351333ac
parent3b86be23e6641c2a298bf381d39346177223176a (diff)
downloadphp-git-8fd79d35742c799c59cfc090d8cfdbe1f93b4f3a.tar.gz
Add privilege check in pcntl_unshare test
Privileges for CLONE_NEWPID were not checked.
-rw-r--r--ext/pcntl/tests/pcntl_unshare_02.phpt7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/pcntl/tests/pcntl_unshare_02.phpt b/ext/pcntl/tests/pcntl_unshare_02.phpt
index bdcb6120ef..cafd64dd96 100644
--- a/ext/pcntl/tests/pcntl_unshare_02.phpt
+++ b/ext/pcntl/tests/pcntl_unshare_02.phpt
@@ -9,8 +9,11 @@ if (!defined("CLONE_NEWPID")) die("skip flag unavailable");
if (getenv("SKIP_ASAN")) die("skip asan chokes on this");
if (posix_getuid() !== 0 &&
(!defined("CLONE_NEWUSER") ||
- (pcntl_unshare(CLONE_NEWUSER) == false && pcntl_get_last_error() == PCNTL_EPERM))) {
- die("skip Insufficient previleges to run test");
+ (@pcntl_unshare(CLONE_NEWUSER) == false && pcntl_get_last_error() == PCNTL_EPERM))) {
+ die("skip Insufficient privileges for CLONE_NEWUSER");
+}
+if (@pcntl_unshare(CLONE_NEWPID) == false && pcntl_get_last_error() == PCNTL_EPERM) {
+ die("skip Insufficient privileges for CLONE_NEWPID");
}
--FILE--