summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEr Galvão Abbott <galvao@galvao.eti.br>2017-10-31 01:50:49 -0200
committerPeter Kokot <peterkokot@gmail.com>2019-02-10 20:03:08 +0100
commiteadfdb96178902f8f46bb6a7673f83863f6beac0 (patch)
tree56100b457cb347d88a237aaba12731489b570fd4
parente727facd4766d8eb42245f2ea3fb9a25ccf4fa5b (diff)
downloadphp-git-eadfdb96178902f8f46bb6a7673f83863f6beac0.tar.gz
Add test case for pcntl_setpriority basic behaviour
-rw-r--r--ext/pcntl/tests/pcntl_setpriority_basic.phpt23
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)