summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-03-09 22:53:23 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2020-03-09 22:53:23 +0100
commitb31f73b1c8c967de73a82598415c467755d35a89 (patch)
tree23d49dcd188e934e1fb3366bcb46a9230a9f4ab0
parentd9c45d86f9cd3d20f66ebf38384a9f53113415e5 (diff)
parentfea2994ff83ac75dcb5b186964f20a21b1df3ec0 (diff)
downloadphp-git-b31f73b1c8c967de73a82598415c467755d35a89.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Enclose INI values containing {TMP} in quotes
-rw-r--r--ext/mysqli/tests/mysqli_store_result_buffered_c.phpt2
-rw-r--r--ext/mysqli/tests/mysqli_store_result_copy.phpt2
-rw-r--r--ext/opcache/tests/bug71443.phpt2
-rw-r--r--ext/opcache/tests/bug76275.phpt2
-rw-r--r--ext/opcache/tests/bug78189.phpt2
-rw-r--r--ext/readline/tests/bug69054.phpt2
-rw-r--r--ext/session/tests/bug32330.phpt2
-rw-r--r--ext/session/tests/session_set_save_handler_sid_002.phpt2
-rw-r--r--ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt2
-rw-r--r--ext/standard/tests/file/bug41655_1-win32.phpt2
-rw-r--r--ext/standard/tests/file/bug41655_1.phpt2
11 files changed, 11 insertions, 11 deletions
diff --git a/ext/mysqli/tests/mysqli_store_result_buffered_c.phpt b/ext/mysqli/tests/mysqli_store_result_buffered_c.phpt
index f685617915..31645b026c 100644
--- a/ext/mysqli/tests/mysqli_store_result_buffered_c.phpt
+++ b/ext/mysqli/tests/mysqli_store_result_buffered_c.phpt
@@ -7,7 +7,7 @@ require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
?>
--INI--
-mysqlnd.debug=d:t:O,{TMP}/mysqlnd.trace
+mysqlnd.debug="d:t:O,{TMP}/mysqlnd.trace"
--FILE--
<?php
require_once("connect.inc");
diff --git a/ext/mysqli/tests/mysqli_store_result_copy.phpt b/ext/mysqli/tests/mysqli_store_result_copy.phpt
index c82bb9e01a..136e2c5d4d 100644
--- a/ext/mysqli/tests/mysqli_store_result_copy.phpt
+++ b/ext/mysqli/tests/mysqli_store_result_copy.phpt
@@ -10,7 +10,7 @@ if (!$IS_MYSQLND) {
}
?>
--INI--
-mysqlnd.debug=d:t:O,{TMP}/mysqlnd.trace
+mysqlnd.debug="d:t:O,{TMP}/mysqlnd.trace"
mysqlnd.net_read_buffer_size=1
mysqlnd.mempool_default_size=1
mysqlnd.fetch_data_copy=0
diff --git a/ext/opcache/tests/bug71443.phpt b/ext/opcache/tests/bug71443.phpt
index 54c123d4ad..5887a2c018 100644
--- a/ext/opcache/tests/bug71443.phpt
+++ b/ext/opcache/tests/bug71443.phpt
@@ -3,7 +3,7 @@ Bug #71443 (Segfault using built-in webserver with intl using symfony)
--INI--
opcache.enable=1
opcache.enable_cli=1
-opcache.file_cache={TMP}
+opcache.file_cache="{TMP}"
opcache.file_cache_only=1
--SKIPIF--
<?php require_once('skipif.inc'); ?>
diff --git a/ext/opcache/tests/bug76275.phpt b/ext/opcache/tests/bug76275.phpt
index 0600b382f9..56a47316b4 100644
--- a/ext/opcache/tests/bug76275.phpt
+++ b/ext/opcache/tests/bug76275.phpt
@@ -3,7 +3,7 @@ Bug #76275: Assertion failure in file cache when unserializing empty try_catch_a
--INI--
opcache.enabled=1
opcache.enable_cli=1
-opcache.file_cache={TMP}
+opcache.file_cache="{TMP}"
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
diff --git a/ext/opcache/tests/bug78189.phpt b/ext/opcache/tests/bug78189.phpt
index d97d8e9470..5e59b5eab6 100644
--- a/ext/opcache/tests/bug78189.phpt
+++ b/ext/opcache/tests/bug78189.phpt
@@ -8,7 +8,7 @@ if (substr(PHP_OS, 0, 3) !== 'WIN') die('skip this test is for Windows platforms
--INI--
opcache.enable_cli=1
opcache.optimization_level=-1
-opcache.file_cache={TMP}
+opcache.file_cache="{TMP}"
opcache.file_cache_only=1
--FILE--
<?php
diff --git a/ext/readline/tests/bug69054.phpt b/ext/readline/tests/bug69054.phpt
index 5b263c8dc4..f588b4f5d3 100644
--- a/ext/readline/tests/bug69054.phpt
+++ b/ext/readline/tests/bug69054.phpt
@@ -3,7 +3,7 @@ Bug #69054 (Null dereference in readline_(read|write)_history() without paramete
--SKIPIF--
<?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); ?>
--INI--
-open_basedir={TMP}
+open_basedir="{TMP}"
--FILE--
<?php readline_read_history(); ?>
==DONE==
diff --git a/ext/session/tests/bug32330.phpt b/ext/session/tests/bug32330.phpt
index 4240ff7160..9d567a1f62 100644
--- a/ext/session/tests/bug32330.phpt
+++ b/ext/session/tests/bug32330.phpt
@@ -6,7 +6,7 @@ Bug #32330 (session_destroy, "Failed to initialize storage module", custom sessi
session.use_trans_sid=0
session.use_cookies=1
session.name=sid
-session.save_path={TMP}
+session.save_path="{TMP}"
session.gc_probability=1
session.gc_divisor=1
session.save_handler=files
diff --git a/ext/session/tests/session_set_save_handler_sid_002.phpt b/ext/session/tests/session_set_save_handler_sid_002.phpt
index faa7663655..0c36c55e2e 100644
--- a/ext/session/tests/session_set_save_handler_sid_002.phpt
+++ b/ext/session/tests/session_set_save_handler_sid_002.phpt
@@ -3,7 +3,7 @@ Test session_set_save_handler() function: create_sid
--INI--
session.save_handler=files
session.name=PHPSESSID
-session.save_path={TMP}
+session.save_path="{TMP}"
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
diff --git a/ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt b/ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt
index 27ad4fa4ec..ab5d3fc99a 100644
--- a/ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt
+++ b/ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt
@@ -4,7 +4,7 @@ SQLite3::loadExtension with empty extension test
Jelle Lampaert
#Belgian Testfest 2009
--INI--
-sqlite3.extension_dir={TMP}
+sqlite3.extension_dir="{TMP}"
--SKIPIF--
<?php
require_once(__DIR__ . '/skipif.inc');
diff --git a/ext/standard/tests/file/bug41655_1-win32.phpt b/ext/standard/tests/file/bug41655_1-win32.phpt
index f21ad0088b..8ce47b1ff0 100644
--- a/ext/standard/tests/file/bug41655_1-win32.phpt
+++ b/ext/standard/tests/file/bug41655_1-win32.phpt
@@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) != 'WIN') {
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--INI--
-open_basedir={TMP}
+open_basedir="{TMP}"
--FILE--
<?php
$a=glob("./*.jpeg");
diff --git a/ext/standard/tests/file/bug41655_1.phpt b/ext/standard/tests/file/bug41655_1.phpt
index 203d20b719..9a95b1c899 100644
--- a/ext/standard/tests/file/bug41655_1.phpt
+++ b/ext/standard/tests/file/bug41655_1.phpt
@@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) == 'WIN') {
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--INI--
-open_basedir={TMP}
+open_basedir="{TMP}"
--FILE--
<?php
$a=glob("./*.jpeg");