summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_getgrgid_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/posix/tests/posix_getgrgid_basic.phpt')
-rw-r--r--ext/posix/tests/posix_getgrgid_basic.phpt16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/posix/tests/posix_getgrgid_basic.phpt b/ext/posix/tests/posix_getgrgid_basic.phpt
index fdcdf35a42..5759d0034d 100644
--- a/ext/posix/tests/posix_getgrgid_basic.phpt
+++ b/ext/posix/tests/posix_getgrgid_basic.phpt
@@ -1,18 +1,18 @@
--TEST--
-Test posix_getgrgid() function : basic functionality
+Test posix_getgrgid() 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 getgid and getgrid fucntions\n";
-
+<?php
+ echo "Basic test of POSIX getgid and getgrid fucntions\n";
+
$gid = posix_getgid();
$groupinfo = posix_getgrgid($gid);
-
+
print_r($groupinfo);
-
+
?>
===DONE===
--EXPECTF--