mirror of
https://github.com/php/php-src.git
synced 2026-04-03 14:12:38 +02:00
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.
24 lines
528 B
PHP
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)
|