Browse Source

Merge branch 'PHP-5.3' into PHP-5.4

By Stanislav Malyshev (1) and michelangelo (1)
* PHP-5.3:
  Adding a test for ext/posix/tests/posix_getegid_basic.phpt
  typo
pull/110/head
David Soria Parra 14 years ago
parent
commit
b9babd22e0
  1. 15
      ext/posix/tests/posix_getegid_basic.phpt

15
ext/posix/tests/posix_getegid_basic.phpt

@ -0,0 +1,15 @@
--TEST--
Test function posix_getegid() by calling it with its expected arguments
--CREDITS--
Michelangelo van Dam dragonbe@gmail.com
#PHPTestFest Dutch PHP Conference 2012
--SKIPIF--
<?php
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
?>
--FILE--
<?php
var_dump(posix_getegid());
?>
--EXPECTF--
int(%d)
Loading…
Cancel
Save