Fix getpriority test with negative return value

Negative return values are valid and denote higher priority.

https://man7.org/linux/man-pages/man2/setpriority.2.html
This commit is contained in:
Ilija Tovilo 2023-09-22 10:23:33 +02:00
parent ca5f9e812a
commit 181598d403
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A

View File

@ -16,4 +16,4 @@ if (!function_exists('pcntl_getpriority')) {
var_dump(pcntl_getpriority());
?>
--EXPECTF--
int(%d)
int(%i)