From fba3985f23020d53ce370e3c4ac685646bda5c92 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Tue, 17 Nov 2015 20:12:50 +0800 Subject: [PATCH] Improve the test --- ext/mysqli/tests/bug68077.phpt | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/ext/mysqli/tests/bug68077.phpt b/ext/mysqli/tests/bug68077.phpt index 18c276594e1..3b6fa92ae39 100644 --- a/ext/mysqli/tests/bug68077.phpt +++ b/ext/mysqli/tests/bug68077.phpt @@ -7,13 +7,22 @@ require_once('skipifconnectfailure.inc'); if (!$IS_MYSQLND) { die("skip: test applies only to mysqlnd"); } +if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) + die("skip Cannot connect to MySQL"); + +include_once("local_infile_tools.inc"); +if ($msg = check_local_infile_support($link, $engine)) + die(sprintf("skip %s, [%d] %s", $msg, $link->errno, $link->error)); + +mysqli_close($link); ?> --INI-- -open_basedir={PWD} +open_basedir= --FILE-- query("LOAD DATA LOCAL INFILE '../../bug53503.data' INTO TABLE test")) { + ini_set("open_basedir", __DIR__ . "/dummy"); + if (!$link->query("LOAD DATA LOCAL INFILE '" . __DIR__ . "/bug53503.data' INTO TABLE test")) { printf("[006] [%d] %s\n", $link->errno, $link->error); echo "done\n"; } else {