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