1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
archived-php-src/ext/posix/tests/posix_getpid_basic.phpt
T
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

22 lines
353 B
PHP

--TEST--
Test posix_getpid() function : basic functionality
--SKIPIF--
<?php
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
?>
--FILE--
<?php
echo "Basic test of POSIX getpid function\n";
$pid = posix_getpid();
var_dump($pid);
?>
===DONE====
--EXPECTF--
Basic test of POSIX getpid function
int(%d)
===DONE====