uw Tue, 22 Sep 2009 06:59:04 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=288547
Log: Fixing test. Can't wait to see the new run-tests materialize for detecting skip section parse errors. Changed paths: U php/php-src/branches/PHP_5_3/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 2009-09-22 01:17:16 UTC (rev 288546) +++ php/php-src/branches/PHP_5_3/ext/mysqli/tests/mysqli_poll_reference.phpt 2009-09-22 06:59:04 UTC (rev 288547) @@ -13,10 +13,9 @@ if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket)) die("skip cannot connect"); -if (mysqli_server_version($link) < 50012)) +if (mysqli_server_version($link) < 50012) die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12"); -mysqli_close($link); ?> --FILE-- <?php Modified: php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt =================================================================== --- php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt 2009-09-22 01:17:16 UTC (rev 288546) +++ php/php-src/trunk/ext/mysqli/tests/mysqli_poll_reference.phpt 2009-09-22 06:59:04 UTC (rev 288547) @@ -13,10 +13,9 @@ if (!$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket)) die("skip cannot connect"); -if (mysqli_server_version($link) < 50012)) +if (mysqli_server_version($link) < 50012) die("skip Test needs SQL function SLEEP() available as of MySQL 5.0.12"); -mysqli_close($link); ?> --FILE-- <?php
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php