rasmus                                   Mon, 23 Nov 2009 21:24:20 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=291233

Log:
Need the PCNTL extension loaded since that is where the SIGKILL constant comes 
from

Changed paths:
    U   php/php-src/branches/PHP_5_2/ext/posix/tests/posix_errno_variation2.phpt
    U   php/php-src/branches/PHP_5_3/ext/posix/tests/posix_errno_variation2.phpt
    U   php/php-src/trunk/ext/posix/tests/posix_errno_variation2.phpt

Modified: 
php/php-src/branches/PHP_5_2/ext/posix/tests/posix_errno_variation2.phpt
===================================================================
--- php/php-src/branches/PHP_5_2/ext/posix/tests/posix_errno_variation2.phpt    
2009-11-23 21:13:26 UTC (rev 291232)
+++ php/php-src/branches/PHP_5_2/ext/posix/tests/posix_errno_variation2.phpt    
2009-11-23 21:24:20 UTC (rev 291233)
@@ -7,6 +7,7 @@
 --SKIPIF--
 <?php
         if(!extension_loaded("posix")) print "skip - POSIX extension not 
loaded";
+        if(!extension_loaded("pcntl")) print "skip - PCNTL extension required";
 ?>
 --FILE--
 <?php

Modified: 
php/php-src/branches/PHP_5_3/ext/posix/tests/posix_errno_variation2.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/posix/tests/posix_errno_variation2.phpt    
2009-11-23 21:13:26 UTC (rev 291232)
+++ php/php-src/branches/PHP_5_3/ext/posix/tests/posix_errno_variation2.phpt    
2009-11-23 21:24:20 UTC (rev 291233)
@@ -7,6 +7,7 @@
 --SKIPIF--
 <?php
         if(!extension_loaded("posix")) print "skip - POSIX extension not 
loaded";
+        if(!extension_loaded("pcntl")) print "skip - PCNTL extension required";
 ?>
 --FILE--
 <?php

Modified: php/php-src/trunk/ext/posix/tests/posix_errno_variation2.phpt
===================================================================
--- php/php-src/trunk/ext/posix/tests/posix_errno_variation2.phpt       
2009-11-23 21:13:26 UTC (rev 291232)
+++ php/php-src/trunk/ext/posix/tests/posix_errno_variation2.phpt       
2009-11-23 21:24:20 UTC (rev 291233)
@@ -7,6 +7,7 @@
 --SKIPIF--
 <?php
         if(!extension_loaded("posix")) print "skip - POSIX extension not 
loaded";
+        if(!extension_loaded("pcntl")) print "skip - PCNTL extension required";
 ?>
 --FILE--
 <?php

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to