]> granicus.if.org Git - php/commitdiff
add test for bug #72701
authorAnatol Belski <ab@php.net>
Fri, 29 Jul 2016 15:23:39 +0000 (17:23 +0200)
committerAnatol Belski <ab@php.net>
Fri, 29 Jul 2016 15:23:39 +0000 (17:23 +0200)
ext/mysqli/tests/bug72701.phpt [new file with mode: 0644]

diff --git a/ext/mysqli/tests/bug72701.phpt b/ext/mysqli/tests/bug72701.phpt
new file mode 100644 (file)
index 0000000..f0eb174
--- /dev/null
@@ -0,0 +1,32 @@
+--TEST--
+Bug #72701 mysqli_get_host_info() wrong output
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+require_once('skipifconnectfailure.inc');
+require_once("connect.inc");
+
+if ("127.0.0.1" != $host && "localhost" != $host) {
+       die("skip require 127.0.0.1 connection");
+}
+
+?>
+--FILE--
+<?php
+
+require_once("connect.inc");
+
+$con = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
+
+if (mysqli_connect_errno()) {
+       echo "Failed to connect to MySQL: " . mysqli_connect_error();
+}
+
+var_dump(preg_match(",(127.0.0.1|localhost) via .*,i", mysqli_get_host_info($con)));
+
+mysqli_close($con);
+?>
+==DONE==
+--EXPECT--
+int(1)
+==DONE==