uw Tue, 06 Sep 2011 14:47:57 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=316263
Log: BORK hunting - Fixing SKIPIF Changed paths: U php/php-src/branches/PHP_5_3/ext/mysqli/tests/mysqli_poll_reference.phpt U php/php-src/branches/PHP_5_4/ext/mysqli/tests/mysqli_poll_reference.phpt U php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt Modified: php/php-src/branches/PHP_5_3/ext/mysqli/tests/mysqli_poll_reference.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:45:44 UTC (rev 316262) +++ php/php-src/branches/PHP_5_3/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:47:57 UTC (rev 316263) @@ -13,7 +13,7 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) die("skip cannot connect"); -if (mysqli_server_version($link) < 50012) +if (mysqli_get_server_version($link) < 50012) die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12"); ?> Modified: php/php-src/branches/PHP_5_4/ext/mysqli/tests/mysqli_poll_reference.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:45:44 UTC (rev 316262) +++ php/php-src/branches/PHP_5_4/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:47:57 UTC (rev 316263) @@ -13,7 +13,7 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) die("skip cannot connect"); -if (mysqli_server_version($link) < 50012) +if (mysqli_get_server_version($link) < 50012) die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12"); ?> Modified: php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt =================================================================== --- php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:45:44 UTC (rev 316262) +++ php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt 2011-09-06 14:47:57 UTC (rev 316263) @@ -13,7 +13,7 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) die("skip cannot connect"); -if (mysqli_server_version($link) < 50012) +if (mysqli_get_server_version($link) < 50012) die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12"); ?>
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php