1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/ext/posix/tests/posix_getsid_basic.phpt
T
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

21 lines
305 B
PHP

--TEST--
Test posix_getsid() function : basic functionality
--EXTENSIONS--
posix
--FILE--
<?php
echo "Basic test of posix_getsid function\n";
$pid = posix_getpid();
$sid = posix_getsid($pid);
var_dump($sid);
?>
===DONE====
--EXPECTF--
Basic test of posix_getsid function
int(%d)
===DONE====