[PHP-CVS] svn: /php/win-installer/trunk/ ExtensionsFragment53.wxs

2010-02-15 Thread Pierre Joye
pajoye   Mon, 15 Feb 2010 19:14:30 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295097

Log:
- #51046, fix long names for enchant deps

Bug: http://bugs.php.net/51046 (Feedback) 'gmodul_2.dll' should be named 
'gmodule-2.dll'
  
Changed paths:
U   php/win-installer/trunk/ExtensionsFragment53.wxs

Modified: php/win-installer/trunk/ExtensionsFragment53.wxs
===
--- php/win-installer/trunk/ExtensionsFragment53.wxs2010-02-15 18:50:14 UTC 
(rev 295096)
+++ php/win-installer/trunk/ExtensionsFragment53.wxs2010-02-15 19:14:30 UTC 
(rev 295097)
@@ -24,13 +24,13 @@
File Id=fileglib2DLL Name=glib-2.dll 
Source=Files\glib-2.dll /
/Component
Component Id=gmodule2DLL DiskId=1 
Guid=9F64F164-C395-4edf-A615-44A212FBCCB7
-   File Id=filegmodule2DLL Name=gmodul_2.dll 
Source=Files\gmodule-2.dll /
+   File Id=filegmodule2DLL Name=gmodul2.dll 
LongName=gmodule-2.dll Source=Files\gmodule-2.dll /
/Component
Component Id=libenchantmyspellDLL DiskId=1 
Guid=A53BEC7D-A42C-4bfb-A64B-1727E786A270
-   File Id=filelibenchantmyspellDLL 
Name=libenm_1.dll Source=Files\libenchant_myspell.dll /
+   File Id=filelibenchantmyspellDLL 
Name=libenm_1.dll LongName=libenchant_myspell.dll 
Source=Files\libenchant_myspell.dll /
/Component
Component Id=libenchantispellDLL DiskId=1 
Guid=C39C22EC-D3F5-4a73-A27A-BF4C1F45F8C1
-   File Id=filelibenchantispellDLL 
Name=libeni_1.dll Source=Files\libenchant_ispell.dll /
+   File Id=filelibenchantispellDLL 
Name=libeni_1.dll LongName=libenchant_ispell.dll  
Source=Files\libenchant_ispell.dll /
/Component
Component Id=ntwdblibDLL DiskId=1 
Guid=7FA2C1EB-5166-4D16-AD36-DEF92A491D8B
File Id=filentwdblibDLL Name=ntwdblib.dll 
Source=Files\ntwdblib.dll /

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

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt trunk/ext

2010-02-15 Thread Felipe Pena
felipe   Mon, 15 Feb 2010 21:16:34 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295100

Log:
- Fix test (bug #51040)

Bug: http://bugs.php.net/51040 (Open) xmlwriter_write_attribute_ns with missing 
param 
  
Changed paths:
U   
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
U   
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
U   
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt

Modified: 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:05:08 UTC (rev 295099)
+++ 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:16:34 UTC (rev 295100)
@@ -31,5 +31,5 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root
+/root%w
 bool(false)

Modified: 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:05:08 UTC (rev 295099)
+++ 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:16:34 UTC (rev 295100)
@@ -31,5 +31,5 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root
+/root%w
 bool(false)

Modified: 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
   2010-02-15 21:05:08 UTC (rev 295099)
+++ 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
   2010-02-15 21:16:34 UTC (rev 295100)
@@ -31,5 +31,5 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root
+/root%w
 bool(false)

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

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/posix/tests/posix_getgrgid_basic.phpt branches/PHP_5_3/ext/posix/tests/posix_getgrgid_basic.phpt trunk/ext/posix/tests/posix_getgrgid_basic.phpt

2010-02-15 Thread Felipe Pena
felipe   Mon, 15 Feb 2010 21:24:17 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295101

Log:
- Fix test (Bug #51035)

Bug: http://bugs.php.net/51035 (Feedback) posix_getgrgid() function : basic 
functionality 
  
Changed paths:
U   php/php-src/branches/PHP_5_2/ext/posix/tests/posix_getgrgid_basic.phpt
U   php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getgrgid_basic.phpt
U   php/php-src/trunk/ext/posix/tests/posix_getgrgid_basic.phpt

Modified: php/php-src/branches/PHP_5_2/ext/posix/tests/posix_getgrgid_basic.phpt
===
--- php/php-src/branches/PHP_5_2/ext/posix/tests/posix_getgrgid_basic.phpt  
2010-02-15 21:16:34 UTC (rev 295100)
+++ php/php-src/branches/PHP_5_2/ext/posix/tests/posix_getgrgid_basic.phpt  
2010-02-15 21:24:17 UTC (rev 295101)
@@ -20,11 +20,11 @@
 Array
 (
 [name] = %s
-[passwd] = %s
+[passwd] = %a
 [members] = Array
 %a

 [gid] = %d
 )
 ===DONE===
-
\ No newline at end of file
+

Modified: php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getgrgid_basic.phpt
===
--- php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getgrgid_basic.phpt  
2010-02-15 21:16:34 UTC (rev 295100)
+++ php/php-src/branches/PHP_5_3/ext/posix/tests/posix_getgrgid_basic.phpt  
2010-02-15 21:24:17 UTC (rev 295101)
@@ -20,11 +20,11 @@
 Array
 (
 [name] = %s
-[passwd] = %s
+[passwd] = %a
 [members] = Array
 %a

 [gid] = %d
 )
 ===DONE===
-
\ No newline at end of file
+

Modified: php/php-src/trunk/ext/posix/tests/posix_getgrgid_basic.phpt
===
--- php/php-src/trunk/ext/posix/tests/posix_getgrgid_basic.phpt 2010-02-15 
21:16:34 UTC (rev 295100)
+++ php/php-src/trunk/ext/posix/tests/posix_getgrgid_basic.phpt 2010-02-15 
21:24:17 UTC (rev 295101)
@@ -20,11 +20,11 @@
 Array
 (
 [name] = %s
-[passwd] = %s
+[passwd] = %a
 [members] = Array
 %a

 [gid] = %d
 )
 ===DONE===
-
\ No newline at end of file
+

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

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/soap/tests/bug46760.phpt branches/PHP_5_2/ext/soap/tests/bug48557.phpt branches/PHP_5_2/ext/soap/tests/bugs/bug36226-2.phpt branches/PHP_5_2/ext/soap/

2010-02-15 Thread Felipe Pena
felipe   Mon, 15 Feb 2010 21:32:25 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295104

Log:
- Added missing SKIPIF

Changed paths:
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bug46760.phpt
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bug48557.phpt
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug36226-2.phpt
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug42692.phpt
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug46427.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bug46760.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bug48557.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug36226-2.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug42692.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug46427.phpt
U   php/php-src/trunk/ext/soap/tests/bug48557.phpt
U   php/php-src/trunk/ext/soap/tests/bugs/bug42692.phpt
U   php/php-src/trunk/ext/soap/tests/bugs/bug46427.phpt

Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bug46760.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bug46760.phpt   2010-02-15 
21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bug46760.phpt   2010-02-15 
21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #46760 (SoapClient doRequest fails when proxy is used)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php


Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bug48557.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bug48557.phpt   2010-02-15 
21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bug48557.phpt   2010-02-15 
21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #48557 (Numeric string keys in Apache Hashmaps are not cast to integers)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php
 error_reporting(E_ALL);

Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug36226-2.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug36226-2.phpt
2010-02-15 21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug36226-2.phpt
2010-02-15 21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #36226 (Inconsistent handling when passing nillable arrays)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --INI--
 soap.wsdl_cache_enabled=0
 --FILE--

Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug42692.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug42692.phpt  
2010-02-15 21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug42692.phpt  
2010-02-15 21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #42692 (Procedure 'int1' not present with doc/lit SoapServer)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php
 ini_set('soap.wsdl_cache_enabled','0');

Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug46427.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug46427.phpt  
2010-02-15 21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug46427.phpt  
2010-02-15 21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #46427 (SoapClient() stumbles over its stream_context parameter)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php
 error_reporting(E_ALL|E_STRICT);

Modified: php/php-src/branches/PHP_5_3/ext/soap/tests/bug46760.phpt
===
--- php/php-src/branches/PHP_5_3/ext/soap/tests/bug46760.phpt   2010-02-15 
21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_3/ext/soap/tests/bug46760.phpt   2010-02-15 
21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #46760 (SoapClient doRequest fails when proxy is used)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php


Modified: php/php-src/branches/PHP_5_3/ext/soap/tests/bug48557.phpt
===
--- php/php-src/branches/PHP_5_3/ext/soap/tests/bug48557.phpt   2010-02-15 
21:30:22 UTC (rev 295103)
+++ php/php-src/branches/PHP_5_3/ext/soap/tests/bug48557.phpt   2010-02-15 
21:32:25 UTC (rev 295104)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #48557 (Numeric string keys in Apache Hashmaps are not cast to integers)
+--SKIPIF--
+?php require_once('skipif.inc'); ?
 --FILE--
 ?php
 error_reporting(E_ALL);

Modified: php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug36226-2.phpt
===
--- php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug36226-2.phpt
2010-02-15 

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt trunk/ext

2010-02-15 Thread Felipe Pena
felipe   Mon, 15 Feb 2010 21:37:46 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295105

Log:
- Fix the fix :P

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

Modified: 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:32:25 UTC (rev 295104)
+++ 
php/php-src/branches/PHP_5_2/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:37:46 UTC (rev 295105)
@@ -31,5 +31,4 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root%w
-bool(false)
+/root%wbool(false)

Modified: 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:32:25 UTC (rev 295104)
+++ 
php/php-src/branches/PHP_5_3/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
2010-02-15 21:37:46 UTC (rev 295105)
@@ -31,5 +31,4 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root%w
-bool(false)
+/root%wbool(false)

Modified: 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
===
--- 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
   2010-02-15 21:32:25 UTC (rev 295104)
+++ 
php/php-src/trunk/ext/xmlwriter/tests/xmlwriter_write_attribute_ns_error_001.phpt
   2010-02-15 21:37:46 UTC (rev 295105)
@@ -31,5 +31,4 @@
 ?xml version=1.0 encoding=UTF-8?
 root
  elem1 attr1=first/
-/root%w
-bool(false)
+/root%wbool(false)

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

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/soap/tests/bugs/bug34657.phpt branches/PHP_5_3/ext/soap/tests/bugs/bug34657.phpt trunk/ext/soap/tests/bugs/bug34657.phpt

2010-02-15 Thread Felipe Pena
felipe   Mon, 15 Feb 2010 21:46:45 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295106

Log:
- Fix test (Bug #51036)

Bug: http://bugs.php.net/51036 (Open) If you get a communication problem when 
loading the WSDL, it fatal's
  
Changed paths:
U   php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug34657.phpt
U   php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug34657.phpt
U   php/php-src/trunk/ext/soap/tests/bugs/bug34657.phpt

Modified: php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug34657.phpt
===
--- php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug34657.phpt  
2010-02-15 21:37:46 UTC (rev 295105)
+++ php/php-src/branches/PHP_5_2/ext/soap/tests/bugs/bug34657.phpt  
2010-02-15 21:46:45 UTC (rev 295106)
@@ -31,5 +31,5 @@

 Warning: SoapClient::SoapClient(): I/O warning : failed to load external 
entity http://i_dont_exist.com/some.wsdl; in %sbug34657.php on line 3
 SoapFault
-SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'
+SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'%S
 ok

Modified: php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug34657.phpt
===
--- php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug34657.phpt  
2010-02-15 21:37:46 UTC (rev 295105)
+++ php/php-src/branches/PHP_5_3/ext/soap/tests/bugs/bug34657.phpt  
2010-02-15 21:46:45 UTC (rev 295106)
@@ -31,5 +31,5 @@

 Warning: SoapClient::SoapClient(): I/O warning : failed to load external 
entity http://i_dont_exist.com/some.wsdl; in %sbug34657.php on line 3
 SoapFault
-SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'
+SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'%S
 ok

Modified: php/php-src/trunk/ext/soap/tests/bugs/bug34657.phpt
===
--- php/php-src/trunk/ext/soap/tests/bugs/bug34657.phpt 2010-02-15 21:37:46 UTC 
(rev 295105)
+++ php/php-src/trunk/ext/soap/tests/bugs/bug34657.phpt 2010-02-15 21:46:45 UTC 
(rev 295106)
@@ -31,5 +31,5 @@

 Warning: SoapClient::__construct(): I/O warning : failed to load external 
entity http://i_dont_exist.com/some.wsdl; in %sbug34657.php on line 3
 SoapFault
-SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'
+SOAP-ERROR: Parsing WSDL: Couldn't load from 
'http://i_dont_exist.com/some.wsdl'%S
 ok

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

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_2/ext/standard/tests/general_functions/getservbyname_basic.phpt branches/PHP_5_3/ext/standard/tests/general_functions/getservbyname_basic.phpt trunk/ext/sta

2010-02-15 Thread Raphael Geissert
geissert Tue, 16 Feb 2010 05:38:50 +

Revision: http://svn.php.net/viewvc?view=revisionrevision=295137

Log:
Correct description of getservbyname_basic.phpt (bug #51022)

Bug: http://bugs.php.net/51022 (Feedback) getservbyname_basic.phpt has 
incorrect description and misses a skip case
  
Changed paths:
U   
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/getservbyname_basic.phpt
U   
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/getservbyname_basic.phpt
U   
php/php-src/trunk/ext/standard/tests/general_functions/getservbyname_basic.phpt

Modified: 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/getservbyname_basic.phpt
===
--- 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/getservbyname_basic.phpt
  2010-02-16 05:25:39 UTC (rev 295136)
+++ 
php/php-src/branches/PHP_5_2/ext/standard/tests/general_functions/getservbyname_basic.phpt
  2010-02-16 05:38:50 UTC (rev 295137)
@@ -1,5 +1,5 @@
 --TEST--
-Test function getservbyport() by calling it more than or less than its 
expected arguments
+Test function getservbyname()
 --CREDITS--
 Italian PHP TestFest 2009 Cesena 19-20-21 june
 Fabio Fabbrucci (fabbru...@grupporetina.com)

Modified: 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/getservbyname_basic.phpt
===
--- 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/getservbyname_basic.phpt
  2010-02-16 05:25:39 UTC (rev 295136)
+++ 
php/php-src/branches/PHP_5_3/ext/standard/tests/general_functions/getservbyname_basic.phpt
  2010-02-16 05:38:50 UTC (rev 295137)
@@ -1,5 +1,5 @@
 --TEST--
-Test function getservbyport() by calling it more than or less than its 
expected arguments
+Test function getservbyname()
 --CREDITS--
 Italian PHP TestFest 2009 Cesena 19-20-21 june
 Fabio Fabbrucci (fabbru...@grupporetina.com)

Modified: 
php/php-src/trunk/ext/standard/tests/general_functions/getservbyname_basic.phpt
===
--- 
php/php-src/trunk/ext/standard/tests/general_functions/getservbyname_basic.phpt 
2010-02-16 05:25:39 UTC (rev 295136)
+++ 
php/php-src/trunk/ext/standard/tests/general_functions/getservbyname_basic.phpt 
2010-02-16 05:38:50 UTC (rev 295137)
@@ -1,5 +1,5 @@
 --TEST--
-Test function getservbyport() by calling it more than or less than its 
expected arguments
+Test function getservbyname()
 --CREDITS--
 Italian PHP TestFest 2009 Cesena 19-20-21 june
 Fabio Fabbrucci (fabbru...@grupporetina.com)

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