mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
23 lines
575 B
PHP
23 lines
575 B
PHP
--TEST--
|
|
posix_initgroups(): Basic tests
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
|
|
if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not found');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo "Basic test of POSIX posix_initgroups function\n";
|
|
var_dump(posix_initgroups('foo', 'bar'));
|
|
var_dump(posix_initgroups(NULL, NULL));
|
|
|
|
?>
|
|
===DONE====
|
|
--EXPECTF--
|
|
Basic test of POSIX posix_initgroups function
|
|
|
|
Warning: posix_initgroups() expects parameter 2 to be long, string given in %s on line %d
|
|
bool(false)
|
|
bool(false)
|
|
===DONE====
|