1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/ext/pcntl/tests/pcntl_setpriority_basic.phpt
2019-02-10 20:03:08 +01:00

24 lines
513 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 (!isset($_SERVER['SUDO_USER'])) {
die('skip - this functions needs to run with superuser');
}
if (!extension_loaded('pcntl')) {
die('skip - ext/pcntl not loaded');
} else if (!function_exists('pcntl_setpriority')) {
die('skip - pcntl_setpriority doesn\'t exist');
}
?>
--FILE--
<?php
var_dump(pcntl_setpriority(-5));
?>
--EXPECT--
bool(true)