mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Merge branch 'PHP-7.4'
* PHP-7.4: Add the last missing SKIPIF
This commit is contained in:
commit
68edbbfe76
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #71263: fread() does not detects decoding errors from filter bzip2.decompress
|
Bug #71263: fread() does not detects decoding errors from filter bzip2.decompress
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded("bz2")) print "skip bz2 extension not loaded"; ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #77895: IntlDateFormatter::create fails in strict mode if $locale = null
|
Bug #77895: IntlDateFormatter::create fails in strict mode if $locale = null
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #65683: Intl does not support DateTimeImmutable (using datefmt_format_object)
|
Bug #65683: Intl does not support DateTimeImmutable (using datefmt_format_object)
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
$date = date_create('1970-01-01');
|
$date = date_create('1970-01-01');
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #77843: Use after free with json serializer
|
Bug #77843: Use after free with json serializer
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if(!extension_loaded('json')) die('skip json extension not loaded') ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
updateTimestamp never called when session data is empty
|
updateTimestamp never called when session data is empty
|
||||||
|
--SKIPIF--
|
||||||
|
<?php include('skipif.inc'); ?>
|
||||||
--INI--
|
--INI--
|
||||||
session.use_strict_mode=0
|
session.use_strict_mode=0
|
||||||
session.save_handler=files
|
session.save_handler=files
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #74892 Url Rewriting (trans_sid) not working on urls that start with #
|
Bug #74892 Url Rewriting (trans_sid) not working on urls that start with #
|
||||||
|
--SKIPIF--
|
||||||
|
<?php include('skipif.inc'); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
ini_set('session.use_cookies', '0');
|
ini_set('session.use_cookies', '0');
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
token_get_all() produces T_BAD_CHARACTER for unexpected characters
|
token_get_all() produces T_BAD_CHARACTER for unexpected characters
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #76991: Incorrect tokenization of multiple invalid flexible heredoc strings
|
Bug #76991: Incorrect tokenization of multiple invalid flexible heredoc strings
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Inline HTML should not be split at partial PHP tags
|
Inline HTML should not be split at partial PHP tags
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
|
||||||
--INI--
|
--INI--
|
||||||
short_open_tag=0
|
short_open_tag=0
|
||||||
--FILE--
|
--FILE--
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Tokenization of only the <?php tag
|
Tokenization of only the <?php tag
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #71417: fread() does not detect decoding errors from filter zlib.inflate
|
Bug #71417: fread() does not detect decoding errors from filter zlib.inflate
|
||||||
|
--SKIPIF--
|
||||||
|
<?php if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build'); ?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user