diff options
Diffstat (limited to 'ext/posix/tests/posix_getppid_basic.phpt')
-rw-r--r-- | ext/posix/tests/posix_getppid_basic.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/posix/tests/posix_getppid_basic.phpt b/ext/posix/tests/posix_getppid_basic.phpt index 3cbf5d7a6e..8d10afc456 100644 --- a/ext/posix/tests/posix_getppid_basic.phpt +++ b/ext/posix/tests/posix_getppid_basic.phpt @@ -1,17 +1,17 @@ --TEST-- -Test posix_getppid() function : basic functionality +Test posix_getppid() function : basic functionality --SKIPIF-- -<?php +<?php if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); ?> --FILE-- -<?php +<?php echo "Basic test of POSIX getppid function\n"; - + $ppid = posix_getppid(); - + var_dump($ppid); - + ?> ===DONE==== --EXPECTF-- |