andrey                                   Mon, 22 Aug 2011 11:07:35 +0000

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

Log:
Don't run the test on windows, Unix specific

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/mysql/tests/bug55473.phpt
    U   php/php-src/branches/PHP_5_4/ext/mysql/tests/bug55473.phpt
    U   php/php-src/trunk/ext/mysql/tests/bug55473.phpt

Modified: php/php-src/branches/PHP_5_3/ext/mysql/tests/bug55473.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/mysql/tests/bug55473.phpt  2011-08-22 
11:00:15 UTC (rev 315271)
+++ php/php-src/branches/PHP_5_3/ext/mysql/tests/bug55473.phpt  2011-08-22 
11:07:35 UTC (rev 315272)
@@ -4,6 +4,9 @@
 <?php
 require_once('skipif.inc');
 require_once('skipifconnectfailure.inc');
+if (defined('PHP_WINDOWS_VERSION_MAJOR')) {
+       die("skip Test doesn't work on Windows");
+}
 ?>
 --INI--
 mysql.max_persistent=30

Modified: php/php-src/branches/PHP_5_4/ext/mysql/tests/bug55473.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/mysql/tests/bug55473.phpt  2011-08-22 
11:00:15 UTC (rev 315271)
+++ php/php-src/branches/PHP_5_4/ext/mysql/tests/bug55473.phpt  2011-08-22 
11:07:35 UTC (rev 315272)
@@ -4,6 +4,9 @@
 <?php
 require_once('skipif.inc');
 require_once('skipifconnectfailure.inc');
+if (defined('PHP_WINDOWS_VERSION_MAJOR')) {
+       die("skip Test doesn't work on Windows");
+}
 ?>
 --INI--
 mysql.max_persistent=30

Modified: php/php-src/trunk/ext/mysql/tests/bug55473.phpt
===================================================================
--- php/php-src/trunk/ext/mysql/tests/bug55473.phpt     2011-08-22 11:00:15 UTC 
(rev 315271)
+++ php/php-src/trunk/ext/mysql/tests/bug55473.phpt     2011-08-22 11:07:35 UTC 
(rev 315272)
@@ -4,6 +4,9 @@
 <?php
 require_once('skipif.inc');
 require_once('skipifconnectfailure.inc');
+if (defined('PHP_WINDOWS_VERSION_MAJOR')) {
+       die("skip Test doesn't work on Windows");
+}
 ?>
 --INI--
 mysql.max_persistent=30

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

Reply via email to