]> granicus.if.org Git - php/commitdiff
Reverting to proper --INI-- section usage. Improve SKIPIF to skip test if open_basedi...
authorUlf Wendel <uw@php.net>
Tue, 6 Sep 2011 12:58:01 +0000 (12:58 +0000)
committerUlf Wendel <uw@php.net>
Tue, 6 Sep 2011 12:58:01 +0000 (12:58 +0000)
ext/mysql/tests/mysql_query_load_data_openbasedir.phpt

index 90849d1c8f156019fb57d708424c94b7167eb0fc..c2685a572e9df1f9041fa986a0258fd28c802ff3 100644 (file)
@@ -2,9 +2,15 @@
 LOAD DATA INFILE - open_basedir
 --SKIPIF--
 <?php
-require_once('skipif.inc');
-require_once('skipifconnectfailure.inc');
-require_once("connect.inc");
+@include_once("connect.inc");
+
+if (!isset($db)) {
+  die("skip open_basedir setting prevents inclusing of required files");
+}
+
+include_once('skipif.inc');
+include_once('skipifconnectfailure.inc');
+
 
 if (!$IS_MYSQLND)
        die("skip mysqlnd only, libmysql does not know about open_basedir restrictions");
@@ -25,10 +31,12 @@ if ($socket == "" && $host != NULL && $host != 'localhost' && $host != '.') {
        }
 }
 ?>
+--INI--
+open_basedir="."
 --FILE--
 <?php
 @include_once("connect.inc");
-ini_set("open_basedir", __DIR__);
+
 if (!isset($db)) {
        // run-tests, I love you for not allowing me to set ini settings dynamically
        print "[006] [1148] The used command is not allowed with this MySQL version