1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/ext/pcntl/tests/pcntl_setpriority_basic.phpt
Nikita Popov a3469146d4 Use posix_getuid() to check for root in pcntl_setpriority() test
Using SUDO_USER doesn't seem to work on Travis ARM CI -- I guess
that sudo might be in use without the target being root.
2019-10-24 14:46:25 +02:00

24 lines
528 B
PHP

--TEST--
pcntl_setpriority() - Basic behaviour
--CREDITS--
Er Galvão Abbott galvao@galvao.eti.br
# TestFest 2017 PHPRS PHP UG 2017-10-31
--SKIPIF--
<?php
if (!extension_loaded('pcntl')) {
die('skip ext/pcntl not loaded');
}
if (!function_exists('pcntl_setpriority')) {
die('skip pcntl_setpriority doesn\'t exist');
}
if (!function_exists('posix_getuid') || posix_getuid() !== 0) {
die('skip this functions needs to run with superuser');
}
?>
--FILE--
<?php
var_dump(pcntl_setpriority(-5));
?>
--EXPECT--
bool(true)