php-src/ext/posix/tests/posix_setegid_basic.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

10 lines
184 B
PHP

--TEST--
Test function posix_setegid() by calling it with its expected arguments
--EXTENSIONS--
posix
--FILE--
<?php
var_dump(posix_setegid(posix_getegid()));
?>
--EXPECT--
bool(true)