File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / mysqli / tests / bug47050.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:58 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Bug #47050 (mysqli_poll() modifies improper variables)
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
if (!defined("MYSQLI_ASYNC")) {
	die("skip mysqlnd only");
}
?>
--FILE--
<?php
	include ("connect.inc");

	$link1 = my_mysqli_connect($host, $user, $passwd, null, $port, $socket);
	mysqli_select_db($link1, $db);

	$link1->query("SELECT 'test'", MYSQLI_ASYNC);
	$all_links = array($link1);
	$links = $errors = $reject = $all_links;
	mysqli_poll($links, $errors, $reject, 1);

	echo "links: ",     sizeof($links), "\n";
	echo "errors: ",    sizeof($errors), "\n";
	echo "reject: ",    sizeof($reject), "\n";
	echo "all_links: ", sizeof($all_links), "\n";

	$link1->close();
?>
--EXPECT--
links: 1
errors: 0
reject: 0
all_links: 1

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>