import non-predictable number tests
[hiphop-php.git] / hphp / test / zend / good / ext-posix / posix_getpgid_basic.php
blob33b4767ec6d6021400280c53ed14a9bc1c4f0476
1 <?php
2 echo "Basic test of posix_getpgid function\n";
4 $pid = posix_getpid();
5 $pgid = posix_getpgid($pid);
7 var_dump($pgid);
9 ?>
10 ===DONE====