diff options
author | Er Galvão Abbott <galvao@galvao.eti.br> | 2017-10-31 01:50:49 -0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-02-10 20:03:08 +0100 |
commit | eadfdb96178902f8f46bb6a7673f83863f6beac0 (patch) | |
tree | 56100b457cb347d88a237aaba12731489b570fd4 | |
parent | e727facd4766d8eb42245f2ea3fb9a25ccf4fa5b (diff) | |
download | php-git-eadfdb96178902f8f46bb6a7673f83863f6beac0.tar.gz |
Add test case for pcntl_setpriority basic behaviour
-rw-r--r-- | ext/pcntl/tests/pcntl_setpriority_basic.phpt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ext/pcntl/tests/pcntl_setpriority_basic.phpt b/ext/pcntl/tests/pcntl_setpriority_basic.phpt new file mode 100644 index 0000000000..1f03fb2dc9 --- /dev/null +++ b/ext/pcntl/tests/pcntl_setpriority_basic.phpt @@ -0,0 +1,23 @@ +--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) |