mirror of
https://github.com/php/pecl-database-mysql_xdevapi.git
synced 2026-04-29 18:03:11 +02:00
c14f4111b3
- all initial NOTICEs (actually at getting capabilities stage) are ignored, no changes in code are needed - add simple session tests which should verify ignoring initial NOTICE
20 lines
369 B
PHP
20 lines
369 B
PHP
--TEST--
|
|
mysqlx simple session test open
|
|
--SKIPIF--
|
|
--INI--
|
|
error_reporting=E_ALL
|
|
default_socket_timeout=4
|
|
--FILE--
|
|
<?php
|
|
require_once(__DIR__."/../connect.inc");
|
|
require_once(__DIR__."/session_utils.inc");
|
|
|
|
$session = mysql_xdevapi\getSession($connection_uri);
|
|
assert_session_valid_server_ver($session);
|
|
|
|
verify_expectations();
|
|
print "done!\n";
|
|
?>
|
|
--EXPECTF--
|
|
done!%A
|