uw Tue, 06 Sep 2011 16:37:45 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=316280
Log:
Fixing SKIPIF
Changed paths:
U php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getpgid_error.phpt
U php/php-src/branches/PHP_5_4/ext/posix/tests/posix_getpgid_error.phpt
U php/php-src/trunk/ext/posix/tests/posix_getpgid_error.phpt
Modified: php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getpgid_error.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getpgid_error.phpt
2011-09-06 16:30:53 UTC (rev 316279)
+++ php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getpgid_error.phpt
2011-09-06 16:37:45 UTC (rev 316280)
@@ -2,7 +2,7 @@
Test posix_getpgid() function : error conditions
--SKIPIF--
<?php
-if((!extension_loaded("posix")) || (!function_exists(posix_getpgid))) {
+if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) {
print "skip - POSIX extension not loaded or posix_getpgid() does not
exist";
}
?>
Modified: php/php-src/branches/PHP_5_4/ext/posix/tests/posix_getpgid_error.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/posix/tests/posix_getpgid_error.phpt
2011-09-06 16:30:53 UTC (rev 316279)
+++ php/php-src/branches/PHP_5_4/ext/posix/tests/posix_getpgid_error.phpt
2011-09-06 16:37:45 UTC (rev 316280)
@@ -2,7 +2,7 @@
Test posix_getpgid() function : error conditions
--SKIPIF--
<?php
-if((!extension_loaded("posix")) || (!function_exists(posix_getpgid))) {
+if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) {
print "skip - POSIX extension not loaded or posix_getpgid() does not
exist";
}
?>
Modified: php/php-src/trunk/ext/posix/tests/posix_getpgid_error.phpt
===================================================================
--- php/php-src/trunk/ext/posix/tests/posix_getpgid_error.phpt 2011-09-06
16:30:53 UTC (rev 316279)
+++ php/php-src/trunk/ext/posix/tests/posix_getpgid_error.phpt 2011-09-06
16:37:45 UTC (rev 316280)
@@ -2,7 +2,7 @@
Test posix_getpgid() function : error conditions
--SKIPIF--
<?php
-if((!extension_loaded("posix")) || (!function_exists(posix_getpgid))) {
+if((!extension_loaded("posix")) || (!function_exists("posix_getpgid"))) {
print "skip - POSIX extension not loaded or posix_getpgid() does not
exist";
}
?>
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php