summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getppid_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/posix/tests/posix_getppid_basic.phpt')
-rw-r--r--ext/posix/tests/posix_getppid_basic.phpt18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/posix/tests/posix_getppid_basic.phpt b/ext/posix/tests/posix_getppid_basic.phpt
index 2da591c177..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
- if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
+<?php
+ if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
?>
--FILE--
-<?php
- echo "Basic test of POSIX getppid function\n";
-
+<?php
+ echo "Basic test of POSIX getppid function\n";
+
$ppid = posix_getppid();
-
- var_dump($ppid);
-
+
+ var_dump($ppid);
+
?>
===DONE====
--EXPECTF--