import non-predictable number tests
[hiphop-php.git] / hphp / test / zend / good / ext-posix / posix_getppid_basic.php
blob131793c7c69cc6974b09a84a572911dd550b5c3e
1 <?php
2 echo "Basic test of POSIX getppid function\n";
4 $ppid = posix_getppid();
6 var_dump($ppid);
8 ?>
9 ===DONE====