felipe          Wed Dec  3 20:43:22 2008 UTC

  Modified files:              
    /php-src/ext/posix/tests    posix_getcwd.phpt posix_getgrnam.phpt 
                                posix_getpwnam.phpt posix_getrlimit.phpt 
                                posix_initgroups.phpt posix_isatty.phpt 
                                posix_mknod.phpt 
  Log:
  - Fixed strange typos
  
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_getcwd.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_getcwd.phpt
diff -u php-src/ext/posix/tests/posix_getcwd.phpt:1.1 
php-src/ext/posix/tests/posix_getcwd.phpt:1.2
--- php-src/ext/posix/tests/posix_getcwd.phpt:1.1       Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_getcwd.phpt   Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_getcwd(): Basic tests
 --SKIP--
-<?php if (!posix_mknod('posix_getcwd')) die('skip posix_getcwd() not found'); 
?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_getcwd')) die('skip posix_getcwd() not found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_getgrnam.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_getgrnam.phpt
diff -u php-src/ext/posix/tests/posix_getgrnam.phpt:1.1 
php-src/ext/posix/tests/posix_getgrnam.phpt:1.2
--- php-src/ext/posix/tests/posix_getgrnam.phpt:1.1     Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_getgrnam.phpt Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_getgrnam(): Basic tests
 --SKIP--
-<?php if (!function_exists('posix_getgrnam')) die('skip posix_getgrnam() not 
found'); ?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_getgrnam')) die('skip posix_getgrnam() not found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_getpwnam.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_getpwnam.phpt
diff -u php-src/ext/posix/tests/posix_getpwnam.phpt:1.1 
php-src/ext/posix/tests/posix_getpwnam.phpt:1.2
--- php-src/ext/posix/tests/posix_getpwnam.phpt:1.1     Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_getpwnam.phpt Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_getpwnam(): Basic tests
 --SKIP--
-<?php if (!function_exists('posix_getpwnam')) die('skip posix_getpwnam() not 
found'); ?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_getpwnam')) die('skip posix_getpwnam() not found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_getrlimit.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_getrlimit.phpt
diff -u php-src/ext/posix/tests/posix_getrlimit.phpt:1.1 
php-src/ext/posix/tests/posix_getrlimit.phpt:1.2
--- php-src/ext/posix/tests/posix_getrlimit.phpt:1.1    Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_getrlimit.phpt        Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_getrlimit(): Basic tests
 --SKIP--
-<?php if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not 
found'); ?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not 
found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_initgroups.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_initgroups.phpt
diff -u php-src/ext/posix/tests/posix_initgroups.phpt:1.1 
php-src/ext/posix/tests/posix_initgroups.phpt:1.2
--- php-src/ext/posix/tests/posix_initgroups.phpt:1.1   Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_initgroups.phpt       Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_initgroups(): Basic tests
 --SKIP--
-<?php if (!function_exists('posix_initgroups')) die('skip posix_initgroups() 
not found'); ?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_initgroups')) die('skip posix_initgroups() not 
found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_isatty.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_isatty.phpt
diff -u php-src/ext/posix/tests/posix_isatty.phpt:1.1 
php-src/ext/posix/tests/posix_isatty.phpt:1.2
--- php-src/ext/posix/tests/posix_isatty.phpt:1.1       Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_isatty.phpt   Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_isatty(): Basic tests
 --SKIP--
-<?php if (!posix_mknod('posix_isatty')) die('skip posix_isatty() not found'); 
?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_isatty')) die('skip posix_isatty() not found');
+?>
 --FILE--
 <?php
 
http://cvs.php.net/viewvc.cgi/php-src/ext/posix/tests/posix_mknod.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/posix/tests/posix_mknod.phpt
diff -u php-src/ext/posix/tests/posix_mknod.phpt:1.1 
php-src/ext/posix/tests/posix_mknod.phpt:1.2
--- php-src/ext/posix/tests/posix_mknod.phpt:1.1        Wed Dec  3 16:20:29 2008
+++ php-src/ext/posix/tests/posix_mknod.phpt    Wed Dec  3 20:43:22 2008
@@ -1,7 +1,10 @@
 --TEST--
 posix_mknod(): Basic tests
 --SKIP--
-<?php if (!posix_mknod('posix_mknod')) die('skip posix_mknod() not found'); ?>
+<?php
+if (!extension_loaded('posix')) die('skip - POSIX extension not loaded'); 
+if (!function_exists('posix_mknod')) die('skip posix_mknod() not found');
+?>
 --FILE--
 <?php
 



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

Reply via email to