1--TEST-- 2pcntl_getpriority() - Basic behaviour 3--CREDITS-- 4Er Galvão Abbott galvao@galvao.eti.br 5# TestFest 2017 PHPRS PHP UG 2017-10-29 6--EXTENSIONS-- 7pcntl 8--SKIPIF-- 9<?php 10if (!function_exists('pcntl_getpriority')) { 11 die('skip - pcntl_getpriority doesn\'t exist'); 12} 13?> 14--FILE-- 15<?php 16var_dump(pcntl_getpriority()); 17?> 18--EXPECTF-- 19int(%i) 20