[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2007-08-29 Thread changelog
changelog   Thu Aug 30 01:31:20 2007 UTC

  Modified files:  
/php-srcChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.2792r2=1.2793diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.2792 php-src/ChangeLog:1.2793
--- php-src/ChangeLog:1.2792Wed Aug 29 01:31:22 2007
+++ php-src/ChangeLog   Thu Aug 30 01:31:20 2007
@@ -1,3 +1,48 @@
+2007-08-29  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* (PHP_5_2)
+  NEWS
+  configure.in
+  main/php_version.h:
+  
+  5.2.4
+
+2007-08-29  Derick Rethans  [EMAIL PROTECTED]
+
+* ext/standard/php_string.h:
+  - Put the PHPAPI php_u_str_to_str() function in the .h, just like the 
rest.
+
+2007-08-29  Raghubansh Kumar  [EMAIL PROTECTED]
+
+* ext/standard/tests/file/fnmatch_basic.phpt
+  ext/standard/tests/file/fnmatch_error.phpt
+  ext/standard/tests/file/fnmatch_variation.phpt:
+  fix tests: do not run on MACOS
+
+* (PHP_5_2)
+  ext/standard/tests/file/fnmatch_basic.phpt
+  ext/standard/tests/file/fnmatch_error.phpt
+  ext/standard/tests/file/fnmatch_variation.phpt:
+  fix test: do not run on MACOS
+
+2007-08-29  Pierre-Alain Joye  [EMAIL PROTECTED]
+
+* (PHP_5_2)
+  ext/gd/gd.c:
+  - gd bug #102, alternative fix when an old library is used
+
+2007-08-29  Raghubansh Kumar  [EMAIL PROTECTED]
+
+* ext/standard/tests/general_functions/gettype_settype_variation2.phpt
+  ext/standard/tests/general_functions/gettype_settype_variation2.phpt:
+  fix test, do not run on macos
+
+2007-08-29  Ilia Alshanetsky  [EMAIL PROTECTED]
+
+* ext/pdo_sqlite/EXPERIMENTAL:
+  
+  not exprimental
+
 2007-08-28  Derick Rethans  [EMAIL PROTECTED]
 
 * main/main.c:


[PHP-CVS] cvs: php-src(PHP_5_2) /ext/gd gd.c

2007-08-29 Thread Pierre-Alain Joye
pajoye  Wed Aug 29 06:26:30 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-src/ext/gd gd.c 
  Log:
  - gd bug #102, alternative fix when an old library is used
  
http://cvs.php.net/viewvc.cgi/php-src/ext/gd/gd.c?r1=1.312.2.20.2.30r2=1.312.2.20.2.31diff_format=u
Index: php-src/ext/gd/gd.c
diff -u php-src/ext/gd/gd.c:1.312.2.20.2.30 php-src/ext/gd/gd.c:1.312.2.20.2.31
--- php-src/ext/gd/gd.c:1.312.2.20.2.30 Mon Jul 30 21:42:36 2007
+++ php-src/ext/gd/gd.c Wed Aug 29 06:26:30 2007
@@ -18,7 +18,7 @@
+--+
  */
 
-/* $Id: gd.c,v 1.312.2.20.2.30 2007/07/30 21:42:36 pajoye Exp $ */
+/* $Id: gd.c,v 1.312.2.20.2.31 2007/08/29 06:26:30 pajoye Exp $ */
 
 /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
Cold Spring Harbor Labs. */
@@ -4353,6 +4353,9 @@
 {
zval **file;
int f_ind, *font;
+#ifdef PHP_WIN32
+   struct stat st;
+#endif
 
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, file) == 
FAILURE) {
ZEND_WRONG_PARAM_COUNT();
@@ -4360,6 +4363,13 @@
 
convert_to_string_ex(file);
 
+#ifdef PHP_WIN32
+   if (VCWD_STAT(Z_STRVAL_PP(file), st)  0) {
+   php_error_docref(NULL TSRMLS_CC, E_WARNING, Font file not 
found (%s), Z_STRVAL_PP(file));
+   RETURN_FALSE;
+   }
+#endif
+
f_ind = T1_AddFont(Z_STRVAL_PP(file));
 
if (f_ind  0) {

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



[PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard/tests/file fnmatch_basic.phpt fnmatch_error.phpt fnmatch_variation.phpt

2007-08-29 Thread Raghubansh Kumar
kraghubaWed Aug 29 10:11:40 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-src/ext/standard/tests/filefnmatch_variation.phpt 
fnmatch_error.phpt 
fnmatch_basic.phpt 
  Log:
  fix test: do not run on MACOS
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_variation.phpt?r1=1.1.2.1r2=1.1.2.2diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_variation.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.1.2.1 
php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.1.2.2
--- php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.1.2.1  Fri May 
25 13:44:23 2007
+++ php-src/ext/standard/tests/file/fnmatch_variation.phpt  Wed Aug 29 
10:11:40 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Variations
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) ) 
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_error.phpt?r1=1.1.2.1r2=1.1.2.2diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_error.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_error.phpt:1.1.2.1 
php-src/ext/standard/tests/file/fnmatch_error.phpt:1.1.2.2
--- php-src/ext/standard/tests/file/fnmatch_error.phpt:1.1.2.1  Fri May 25 
13:44:23 2007
+++ php-src/ext/standard/tests/file/fnmatch_error.phpt  Wed Aug 29 10:11:40 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Error conditions
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) ) 
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_basic.phpt?r1=1.1.2.1r2=1.1.2.2diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_basic.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.1.2.1 
php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.1.2.2
--- php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.1.2.1  Fri May 25 
13:44:23 2007
+++ php-src/ext/standard/tests/file/fnmatch_basic.phpt  Wed Aug 29 10:11:40 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Basic functionality
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) )
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )

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



[PHP-CVS] cvs: php-src /ext/standard/tests/file fnmatch_basic.phpt fnmatch_error.phpt fnmatch_variation.phpt

2007-08-29 Thread Raghubansh Kumar
kraghubaWed Aug 29 10:13:25 2007 UTC

  Modified files:  
/php-src/ext/standard/tests/filefnmatch_variation.phpt 
fnmatch_error.phpt 
fnmatch_basic.phpt 
  Log:
  fix tests: do not run on MACOS
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_variation.phpt?r1=1.2r2=1.3diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_variation.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.2 
php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.3
--- php-src/ext/standard/tests/file/fnmatch_variation.phpt:1.2  Fri May 25 
13:50:05 2007
+++ php-src/ext/standard/tests/file/fnmatch_variation.phpt  Wed Aug 29 
10:13:25 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Variations
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) )
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_error.phpt?r1=1.2r2=1.3diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_error.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_error.phpt:1.2 
php-src/ext/standard/tests/file/fnmatch_error.phpt:1.3
--- php-src/ext/standard/tests/file/fnmatch_error.phpt:1.2  Fri May 25 
13:50:05 2007
+++ php-src/ext/standard/tests/file/fnmatch_error.phpt  Wed Aug 29 10:13:25 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Error conditions
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) )
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/fnmatch_basic.phpt?r1=1.2r2=1.3diff_format=u
Index: php-src/ext/standard/tests/file/fnmatch_basic.phpt
diff -u php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.2 
php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.3
--- php-src/ext/standard/tests/file/fnmatch_basic.phpt:1.2  Fri May 25 
13:50:05 2007
+++ php-src/ext/standard/tests/file/fnmatch_basic.phpt  Wed Aug 29 10:13:25 2007
@@ -2,9 +2,9 @@
 Test fnmatch() function: Basic functionality
 --SKIPIF--
 ?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-die('skip no fnmatch() on Windows');
-}
+if( (stristr(PHP_OS, Mac)) || (stristr(PHP_OS, Win)) )
+  die(skip do not run on MacOS/Windows);
+?
 --FILE--
 ?php
 /* Prototype: bool fnmatch ( string $pattern, string $string [, int $flags] )

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



[PHP-CVS] cvs: php-src /ext/standard php_string.h

2007-08-29 Thread Derick Rethans
derick  Wed Aug 29 14:11:30 2007 UTC

  Modified files:  
/php-src/ext/standard   php_string.h 
  Log:
  - Put the PHPAPI php_u_str_to_str() function in the .h, just like the rest.
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/php_string.h?r1=1.107r2=1.108diff_format=u
Index: php-src/ext/standard/php_string.h
diff -u php-src/ext/standard/php_string.h:1.107 
php-src/ext/standard/php_string.h:1.108
--- php-src/ext/standard/php_string.h:1.107 Mon Jan  1 09:29:32 2007
+++ php-src/ext/standard/php_string.h   Wed Aug 29 14:11:30 2007
@@ -17,7 +17,7 @@
+--+
 */
 
-/* $Id: php_string.h,v 1.107 2007/01/01 09:29:32 sebastian Exp $ */
+/* $Id: php_string.h,v 1.108 2007/08/29 14:11:30 derick Exp $ */
 
 /* Synced with php 3.0 revision 1.43 1999-06-16 [ssb] */
 
@@ -148,6 +148,8 @@
int needle_len, char *str, int str_len, int *_new_length, int 
case_sensitivity, int *replace_count);
 PHPAPI char *php_str_to_str(char *haystack, int length, char *needle,
int needle_len, char *str, int str_len, int *_new_length);
+PHPAPI UChar *php_u_str_to_str_ex(UChar *haystack, int length,
+   UChar *needle, int needle_len, UChar *repl, int repl_len, int 
*_new_length, int *replace_count);
 PHPAPI char *php_trim(char *c, int len, char *what, int what_len, zval 
*return_value, int mode TSRMLS_DC);
 PHPAPI int php_u_strip_tags(UChar *rbuf, int len, int *stateptr, UChar *allow, 
int allow_len TSRMLS_DC);
 PHPAPI size_t php_strip_tags(char *rbuf, int len, int *state, char *allow, int 
allow_len);

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



[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS configure.in /main php_version.h

2007-08-29 Thread Ilia Alshanetsky
iliaa   Wed Aug 29 23:36:12 2007 UTC

  Modified files:  (Branch: PHP_5_2)
/php-srcNEWS configure.in 
/php-src/main   php_version.h 
  Log:
  
  5.2.4
  http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.913r2=1.2027.2.547.2.914diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.913 php-src/NEWS:1.2027.2.547.2.914
--- php-src/NEWS:1.2027.2.547.2.913 Mon Aug 27 08:35:27 2007
+++ php-src/NEWSWed Aug 29 23:36:11 2007
@@ -1,67 +1,17 @@
 PHPNEWS
 |||
-23 Aug 2007, PHP 5.2.4RC3
-- Fixed version_compare() to support rc as well as RC for release candidate
-  version numbers. (Derick)
-- Fixed possible crash in imagepsloadfont(), work around a bug in the pslib on
-  Windows. (Pierre)
-- Fixed bug #42368 (Incorrect error message displayed by pg_escape_string).
-  (Ilia)
-- Fixed bug #42365 (glob() crashes and/or accepts way too many flags). (Jani)
-- Fixed bug #42183 (classmap causes crash in non-wsdl mode). (Dmitry)
-- Fixed bug #42009 (is_a() and is_subclass_of() should NOT call autoload,
-  in the same way as instanceof operator). (Dmitry)
-- Fixed bug #41904 (proc_open(): empty env array should cause empty
-  environment to be passed to process). (Jani)
-- Fixed bug #37273 (Symlinks and mod_files session handler allow open_basedir
-  bypass). (Ilia)
-
-16 Aug 2007, PHP 5.2.4RC2
-- Fixed oci8 and PDO_OCI extensions to allow configuring with Oracle 11g client
-  libraries. (Chris Jones)
-- Fixed Bug #42364 (Crash when using getRealPath with DirectoryIterator).
-  (Johannes)
-- Fixed bug #42292 ($PHP_CONFIG not set for phpized builds). (Jani)
-- Fixed bug #42261 (header wrong for date field). (roberto at spadim dot com
-  dot br, Ilia)
-- Fixed bug #42259 (SimpleXMLIterator loses ancestry). (Rob)
-- Fixed bug #42247 (ldap_parse_result() not defined under win32). (Jani)
-- Fixed bug #42243 (copy() does not output an error when the first arg is a
-  dir). (Ilia)
-- Fixed bug #42242 (sybase_connect() crashes). (Ilia)
-- Fixed bug #42237 (stream_copy_to_stream returns invalid values for mmaped 
-  streams). (andrew dot minerd at sellingsource dot com, Ilia)
-- Fixed bug #42233 (Problems with æøå in extract()). (Jani)
-- Fixed bug #4 (possible buffer overflow in php_openssl_make_REQ). (Pierre)
-- Fixed bug #42211 (property_exists() fails to find protected properties from
-  a parent class). (Dmitry)
-- Fixed bug #42208 (substr_replace() crashes when the same array is passed 
-  more than once). (crrodriguez at suse dot de, Ilia)
-- Fixed bug #42198 (SCRIPT_NAME and PHP_SELF truncated when inside a userdir
-  and using PATH_INFO). (Dmitry)
-- Fixed bug #42195 (C++ compiler required always). (Jani)
-- Fixed bug #42117 (bzip2.compress loses data in internal buffer). (Philip,
-  Ilia)
-- Fixed bug #42082 (NodeList length zero should be empty). (Hannes)
-- Fixed bug #41973 (--with-ldap=shared fails with LDFLAGS=-Wl,--as-needed).
-  (Nuno)
-- Fixed bug #36492 (Userfilters can leak buckets). (Sara)
-- Fixed bug #31892 (PHP_SELF incorrect without cgi.fix_pathinfo, but turning
-  on screws up PATH_INFO). (Dmitry)
-
-02 Aug 2007, PHP 5.2.4RC1
+30 Aug 2007, PHP 5.2.4
 - Removed --enable-versioning configure option. (Jani)
 
 - Upgraded PCRE to version 7.2 (Nuno)
 - Updated timezone database to version 2007.6. (Derick)
 
 - Improved openssl_x509_parse() to return extensions in readable form. (Dmitry)
-- Improved fix for MOPB-03-2007. (Ilia)
-- Corrected fix for CVE-2007-2872. (Ilia)
-- Enabled changing the size of statement cache for non-persistent OCI8
+
+- Enabled changing the size of statement cache for non-persistent OCI8 
   connections. (Chris Jones, Tony)
 
-- Changed display_errors php.ini option to accept stderr as value which
+- Changed display_errors php.ini option to accept stderr as value which 
   makes the error messages to be outputted to STDERR instead of STDOUT with 
   CGI and CLI SAPIs (FR #22839). (Jani)
 - Changed error handler to send HTTP 500 instead of blank page on PHP errors.
@@ -74,144 +24,184 @@
 - Added support for ATTR_TIMEOUT inside pdo_pgsql driver. (Ilia)
 - Added php_ini_loaded_file() function which returns the path to the actual
   php.ini in use. (Jani)
-- Added GD version constants GD_MAJOR_VERSION, GD_MINOR_VERSION
+- Added GD version constants GD_MAJOR_VERSION, GD_MINOR_VERSION,
   GD_RELEASE_VERSION, GD_EXTRA_VERSION and GD_VERSION_STRING. (Pierre)
 - Added missing open_basedir checks to CGI.
   (anight at eyelinkmedia dot com, Tony)
 - Added missing format validator to unpack() function. (Ilia)
 - Added missing error check inside bcpowmod(). (Ilia)
-- Added CURLOPT_PRIVATE  CURLINFO_PRIVATE constants. 
+- Added CURLOPT_PRIVATE  CURLINFO_PRIVATE constants.
   (Andrey A. Belashkov, Tony)
 - Added missing MSG_EOR and MSG_EOF constants to sockets extension. (Jani)
 - 

[PHP-CVS] cvs: CVSROOT / avail

2007-08-29 Thread Philip Olson
philip  Thu Aug 30 02:10:39 2007 UTC

  Modified files:  
/CVSROOTavail 
  Log:
  Karma update for Simion Onea (simionea): phpdoc-ro -- phpdoc
  
  http://cvs.php.net/viewvc.cgi/CVSROOT/avail?r1=1.1300r2=1.1301diff_format=u
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.1300 CVSROOT/avail:1.1301
--- CVSROOT/avail:1.1300Wed Aug 22 13:25:50 2007
+++ CVSROOT/avail   Thu Aug 30 02:10:37 2007
@@ -44,7 +44,7 @@
 # The PHP Documentation Group maintains the documentation and its
 # translations.
 
-avail|jmertic,bobby,takagi,gcc,cem,mfp,ansriniv,jsgoupil,mazzanet,dbs,frogger,coldocean,alan_k,fleaslob,torben,lynch,kk,ted,paul,mbritton,coar,joey,bibi,mrobinso,perugini,tzwenny,hirokawa,drews,paulsen,hartmann,leon,jonen,tschuer,tfromm,manuel,stas,danbeck,sli,jmcastagnetto,mohrt,goba,samesch,jon,soneca,ronabop,glace,latoserver,rafael,jan,jcmeloni,chrullrich,mk,sebastian,troels,mathieu,phaethon,mj,corean,pandach,cycle98,vizvil,regina,cynic,jpm,dams,karoora,pcraft,suvia,zak,zimt,jmoore,ftfuture,ag315,bbonev,afortaleza,neotron,cg,delrom,jkj,hellekin,kgergely,cnewbill,fuzzy74,bjoern,fams,smasiello,dim,lucasr,cpereira,ernani,theseer,noribsd,subjective,ufux,hadar_p,asautins,dbenson,aleczapka,tom,amiller,cortesi,rarruda,betz,philip,alindeman,thyla,cucinato,zyprexia,tpug,mitja,conni,sts,georg,nmav,subbie,leszek,spheroid,slawek,alan_dangelo,ae,nohn,kaser01,visualmind,kurtz,luk,tronic,moh,bernd,yohgaki,fujimoto,gerzson,webler,spooky,cece,daniel,boo,nhoizey,joerg,imajes,hakan,chief97!
 
7,shlomi,raful,yuval,tomer,barak,ido,mork,lior,gal,adiju,cr_depend,florian,kappu,muricaru,dt,critix,ck,costra,fancao0515,tibee,eriksson,wenz,bs,anderson,tal,sander,matroz,ave,adu,mmeier,wentzel,scaro,aspinei,lmaxcar,manuzhai,darvina,peter,maxim,romakhin,n0nick,attila,sagi,kai,microbrain,rhheo,shimi,k.schroeder,djworld,emil,lboshell,netholic,dmitry83,progcom,verdana,yincheng,surfmax,nicos,chregu,msopacua,bbd,cyril,gregory,hudzilla,klean,mignoni,wiesemann,xqi,mersal,zruya,sean,staybyte,aber_sabeel,alzahrani,thomaslio,sfox,jippie,antonio,ahxiao,akcakayaa,allhibi,aner,black,class007,digo,dima,dorons,eshare,hpop1,itay,juppie,mrmatrix,saad,thomasgm,xbite,tobsn,jome,analytik,outsider,heymarcel,asmodean,bader,elmaystro,sp,truelight,gnuhacker,_batman_,sachat,dallas,dejan,zer0fill,steve3d,lm92,bradmssw,tahani,victor,erica,simonh,phpman,mrphp,notarius,joseph,mmkhajah,mohammed,proton,klootz,takashima,leoca,ahmad,abobader,fboudot,wurm,hakawy,felix,ahmedss,mahrous2020,yorgo,gal_ga,abodiv!
 e,ama,andras,hassen,jkhdk,okamura,popov,xman,fernandoc,avenger,hwin,ti
x,alrehawi_,liuming,ramysaweres,astone,shiflett,jaenecke,bdensley,adamchan,jingfs,murphy,potatotsang,the_q,jsheets,xelis,equerci,phpcatala,tofanini,umut,kriga,ray,royhuggins,logician,almanar,alexws,gonik,haiaw,lkwang_cn,shadowwulf,telecart,pongsakorn,naveed,shivas,tularis,angela,decorj,hitcho,kevinkee,nmee,thx1140,crotalus,didou,novotnyr,sil,traduim,gui,mgf,ivanr,michal,tsirman,momo,cysoft,firefox,kouber,mipac,muslem,tomysk,vemarkov,garth,lord_lele,stone,laacz,retnug,ernestyang,hatem,house,luisdaniel,nizar,nvivo,seth,tomh,danguer,adam,nio,wassago,beeven,colacino,zvaranka,cesarguru,chubu,dark2907,portoban,reven,wizzard,sywr,koendw83,rylin,webstudio,jsjohnst,dmanusset,et,pitiphan,mbr,cdalar,alrashoudi,hafid,enough,zhouhao007,jnorbi,lorenzohgh,denisr,coder03,jcclaros,thomas,freeman,rioter,jschultz,davey,belleto,jtacon,yuw,ohill,elfyn,noam,nathan,salman,cheezy,ene,rezaiqbal,purnomo,dufiga_php,ftp_geo,udhien,prio,luckyguy354,maf,handi,meme,satiri,maddankara,rildo,hd,ali,lpj,adhit!
 
ama,engkongs,preilly,dave,marcelo,curt,fd,javi,mrmaster,fa,nlopess,vrana,apaxx,pjotrik,marduk,narcotia1234,enloma,trizo,xmadda,redshift,alifikri,coder,dodol_maniac,eflorin,adywarna,kyokpae,milans,lovchy,spermwhale,phaze,baoengb,derek,yannick,daan,xxiengb,ott,mg,kennyt,tomsommer,poz,zamolxe,bishmila,ph1,irchtml,rogamer,bortolini,sapfir,guru,ahmed,robinhood,sohli,amt,romain,hlecuanda,thessoro,nforbes,jolan,laze,bagilevi,young,shakaali,chokobo,portalufpa,teecee,blindman,holst,schst,mnv,sodhi,aidan,jellybob,lauer,shenkong,jad,robert,peterhuewe,ogre,techtonik,narigone,realtebo,krid,mclay,dasch,miwaniec,abdshomad,sammywg,aeoris,mez,jed,hsc,luckec,dmytton,choudesh,phpvcn,simp,michael,grantc,atex,katja,sthulbourn,mikl,kevinsz,roast,lsmith,tessus,gavinfo,rant,colder,ramsey,arkadius,bjori,erinet,omar,sixd,oliver,rquadling,timo,shadda,joeaccord,ezyang,ljbuesch,knut,asonge,gwynne,mkoppanen,ron,nicobn,jacques,void,mcbrown|phpdoc,phpdoc-ar,phpdoc-bg,phpdoc-cs,phpdoc-da,phpdoc-de,phpdoc-e!
 l,phpdoc-es,phpdoc-fa_IR,phpdoc-fi,phpdoc-fr,phpdoc-he,phpdoc-hk,phpdo
c-hu,phpdoc-id,phpdoc-it,phpdoc-ja,phpdoc-kr,phpdoc-lt,phpdoc-nl,phpdoc-pl,phpdoc-pt_BR,phpdoc-pt,phpdoc-ro,phpdoc-ru,phpdoc-sk,phpdoc-sl,phpdoc-sv,phpdoc-tr,phpdoc-tw,phpdoc-zh,phpdoc-ca,phpdoc-no

[PHP-CVS] cvs: php-src /ext/standard/tests/file lstat_stat_variation6.phpt

2007-08-29 Thread Raghubansh Kumar
kraghubaThu Aug 30 04:02:57 2007 UTC

  Modified files:  
/php-src/ext/standard/tests/filelstat_stat_variation6.phpt 
  Log:
  fix tests: do not run when noatime set
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/lstat_stat_variation6.phpt?r1=1.2r2=1.3diff_format=u
Index: php-src/ext/standard/tests/file/lstat_stat_variation6.phpt
diff -u php-src/ext/standard/tests/file/lstat_stat_variation6.phpt:1.2 
php-src/ext/standard/tests/file/lstat_stat_variation6.phpt:1.3
--- php-src/ext/standard/tests/file/lstat_stat_variation6.phpt:1.2  Thu Jul 
26 13:55:42 2007
+++ php-src/ext/standard/tests/file/lstat_stat_variation6.phpt  Thu Aug 30 
04:02:57 2007
@@ -5,6 +5,14 @@
 if (substr(PHP_OS, 0, 3) == 'WIN') {
 die('skip.. lstat() not available on Windows');
 }
+
+// checking for atime update whether it is enabled or disabled
+exec(mount, $mount_output);
+foreach( $mount_output as $out )  {
+  if( stristr($out, noatime) )
+ die('skip.. atime update is disabled, hence skip the test');
+}
+
 ?
 --FILE--
 ?php

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