mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: use {TMP} placeholder in phpt tests
This commit is contained in:
commit
c982a4c3f9
8 changed files with 11 additions and 11 deletions
|
@ -3,7 +3,7 @@ Bug #71443 (Segfault using built-in webserver with intl using symfony)
|
||||||
--INI--
|
--INI--
|
||||||
opcache.enable=1
|
opcache.enable=1
|
||||||
opcache.enable_cli=1
|
opcache.enable_cli=1
|
||||||
opcache.file_cache=/tmp/
|
opcache.file_cache={TMP}
|
||||||
opcache.file_cache_only=1
|
opcache.file_cache_only=1
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php require_once('skipif.inc'); ?>
|
<?php require_once('skipif.inc'); ?>
|
||||||
|
|
|
@ -3,7 +3,7 @@ Bug #76275: Assertion failure in file cache when unserializing empty try_catch_a
|
||||||
--INI--
|
--INI--
|
||||||
opcache.enabled=1
|
opcache.enabled=1
|
||||||
opcache.enable_cli=1
|
opcache.enable_cli=1
|
||||||
opcache.file_cache=/tmp
|
opcache.file_cache={TMP}
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
if (PHP_VERSION_ID >= 70000) {
|
if (PHP_VERSION_ID >= 70000) {
|
||||||
|
|
|
@ -3,7 +3,7 @@ Bug #69054 (Null dereference in readline_(read|write)_history() without paramete
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); ?>
|
<?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); ?>
|
||||||
--INI--
|
--INI--
|
||||||
open_basedir=/tmp
|
open_basedir={TMP}
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php readline_read_history(); ?>
|
<?php readline_read_history(); ?>
|
||||||
==DONE==
|
==DONE==
|
||||||
|
|
|
@ -6,7 +6,7 @@ Bug #32330 (session_destroy, "Failed to initialize storage module", custom sessi
|
||||||
session.use_trans_sid=0
|
session.use_trans_sid=0
|
||||||
session.use_cookies=1
|
session.use_cookies=1
|
||||||
session.name=sid
|
session.name=sid
|
||||||
session.save_path=/tmp
|
session.save_path={TMP}
|
||||||
session.gc_probability=1
|
session.gc_probability=1
|
||||||
session.gc_divisor=1
|
session.gc_divisor=1
|
||||||
session.save_handler=files
|
session.save_handler=files
|
||||||
|
@ -69,17 +69,17 @@ $_SESSION['E'] = 'F';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
open: path = /tmp, name = sid
|
open: path = %s, name = sid
|
||||||
read: id = %s
|
read: id = %s
|
||||||
gc: maxlifetime = %d
|
gc: maxlifetime = %d
|
||||||
write: id = %s, data = A|s:1:"B";
|
write: id = %s, data = A|s:1:"B";
|
||||||
close
|
close
|
||||||
open: path = /tmp, name = sid
|
open: path = %s, name = sid
|
||||||
read: id = %s
|
read: id = %s
|
||||||
gc: maxlifetime = %d
|
gc: maxlifetime = %d
|
||||||
destroy: id = %s
|
destroy: id = %s
|
||||||
close
|
close
|
||||||
open: path = /tmp, name = sid
|
open: path = %s, name = sid
|
||||||
read: id = %s
|
read: id = %s
|
||||||
gc: maxlifetime = %d
|
gc: maxlifetime = %d
|
||||||
write: id = %s, data = E|s:1:"F";
|
write: id = %s, data = E|s:1:"F";
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test session_set_save_handler() function: create_sid
|
||||||
--INI--
|
--INI--
|
||||||
session.save_handler=files
|
session.save_handler=files
|
||||||
session.name=PHPSESSID
|
session.name=PHPSESSID
|
||||||
session.save_path=/tmp
|
session.save_path={TMP}
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php include('skipif.inc'); ?>
|
<?php include('skipif.inc'); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
|
|
|
@ -4,7 +4,7 @@ SQLite3::loadExtension with empty extension test
|
||||||
Jelle Lampaert
|
Jelle Lampaert
|
||||||
#Belgian Testfest 2009
|
#Belgian Testfest 2009
|
||||||
--INI--
|
--INI--
|
||||||
sqlite3.extension_dir=/tmp
|
sqlite3.extension_dir={TMP}
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
require_once(__DIR__ . '/skipif.inc');
|
require_once(__DIR__ . '/skipif.inc');
|
||||||
|
|
|
@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) != 'WIN') {
|
||||||
--CREDITS--
|
--CREDITS--
|
||||||
Dave Kelsey <d_kelsey@uk.ibm.com>
|
Dave Kelsey <d_kelsey@uk.ibm.com>
|
||||||
--INI--
|
--INI--
|
||||||
open_basedir=/tmp
|
open_basedir={TMP}
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
$a=glob("./*.jpeg");
|
$a=glob("./*.jpeg");
|
||||||
|
|
|
@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) == 'WIN') {
|
||||||
--CREDITS--
|
--CREDITS--
|
||||||
Dave Kelsey <d_kelsey@uk.ibm.com>
|
Dave Kelsey <d_kelsey@uk.ibm.com>
|
||||||
--INI--
|
--INI--
|
||||||
open_basedir=/tmp
|
open_basedir={TMP}
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
$a=glob("./*.jpeg");
|
$a=glob("./*.jpeg");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue