]> granicus.if.org Git - php/commitdiff
Add test for pcntl_getpriority() basic behaviour
authorEr Galvão Abbott <galvao@galvao.eti.br>
Sat, 28 Oct 2017 23:23:42 +0000 (21:23 -0200)
committerPeter Kokot <peterkokot@gmail.com>
Sat, 9 Feb 2019 01:39:46 +0000 (02:39 +0100)
ext/pcntl/tests/pcntl_getpriority_basic.phpt [new file with mode: 0644]

diff --git a/ext/pcntl/tests/pcntl_getpriority_basic.phpt b/ext/pcntl/tests/pcntl_getpriority_basic.phpt
new file mode 100644 (file)
index 0000000..42cd0f7
--- /dev/null
@@ -0,0 +1,19 @@
+--TEST--
+pcntl_getpriority() - Basic behaviour
+--CREDITS--
+Er Galvão Abbott galvao@galvao.eti.br
+# TestFest 2017 PHPRS PHP UG 2017-10-29
+--SKIPIF--
+<?php
+if (!extension_loaded('pcntl')) {
+    die('skip - ext/pcntl not loaded');
+} else if (!function_exists('pcntl_getpriority')) {
+    die('skip - pcntl_getpriority doesn\'t exist');
+}
+?>
+--FILE--
+<?php
+var_dump(pcntl_getpriority());
+?>
+--EXPECTF--
+int(%d)