Merge branch 'PHP-7.4'

* PHP-7.4:
  skip where no groups available
This commit is contained in:
Joe Watkins 2019-06-01 07:36:52 +02:00
commit 2ab1c03186
No known key found for this signature in database
GPG key ID: F9BA0ADA31CBD89E

View file

@ -3,6 +3,7 @@ Test posix_getgrnam() function : basic functionality
--SKIPIF-- --SKIPIF--
<?php <?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
if (!posix_getgroups()) die('skip - groups unavailable (ci)');
?> ?>
--FILE-- --FILE--
<?php <?php