Skip to content

Commit 68edbbf

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Add the last missing SKIPIF
2 parents 6bd5567 + ced5bb7 commit 68edbbf

File tree

11 files changed

+22
-0
lines changed

11 files changed

+22
-0
lines changed

ext/bz2/bug71263.phpt renamed to ext/bz2/tests/bug71263.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #71263: fread() does not detects decoding errors from filter bzip2.decompress
3+
--SKIPIF--
4+
<?php if (!extension_loaded("bz2")) print "skip bz2 extension not loaded"; ?>
35
--FILE--
46
<?php
57

ext/intl/tests/bug77895.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #77895: IntlDateFormatter::create fails in strict mode if $locale = null
3+
--SKIPIF--
4+
<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
35
--FILE--
46
<?php
57

ext/intl/tests/dateformat_bug65683_2.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #65683: Intl does not support DateTimeImmutable (using datefmt_format_object)
3+
--SKIPIF--
4+
<?php if (!extension_loaded('intl')) die('skip intl extension not enabled'); ?>
35
--FILE--
46
<?php
57
$date = date_create('1970-01-01');

ext/json/tests/bug77843.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #77843: Use after free with json serializer
3+
--SKIPIF--
4+
<?php if(!extension_loaded('json')) die('skip json extension not loaded') ?>
35
--FILE--
46
<?php
57

ext/session/tests/bug71162.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
updateTimestamp never called when session data is empty
3+
--SKIPIF--
4+
<?php include('skipif.inc'); ?>
35
--INI--
46
session.use_strict_mode=0
57
session.save_handler=files

ext/session/tests/bug74892.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #74892 Url Rewriting (trans_sid) not working on urls that start with #
3+
--SKIPIF--
4+
<?php include('skipif.inc'); ?>
35
--FILE--
46
<?php
57
ini_set('session.use_cookies', '0');

ext/tokenizer/tests/bad_character.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
token_get_all() produces T_BAD_CHARACTER for unexpected characters
3+
--SKIPIF--
4+
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
35
--FILE--
46
<?php
57

ext/tokenizer/tests/bug76991.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #76991: Incorrect tokenization of multiple invalid flexible heredoc strings
3+
--SKIPIF--
4+
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
35
--FILE--
46
<?php
57

ext/tokenizer/no_inline_html_split.phpt renamed to ext/tokenizer/tests/no_inline_html_split.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Inline HTML should not be split at partial PHP tags
3+
--SKIPIF--
4+
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
35
--INI--
46
short_open_tag=0
57
--FILE--

ext/tokenizer/tests/php_tag_only.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Tokenization of only the <?php tag
3+
--SKIPIF--
4+
<?php if (!extension_loaded("tokenizer")) print "skip tokenizer extension not enabled"; ?>
35
--FILE--
46
<?php
57

ext/zlib/tests/bug71417.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #71417: fread() does not detect decoding errors from filter zlib.inflate
3+
--SKIPIF--
4+
<?php if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build'); ?>
35
--FILE--
46
<?php
57

0 commit comments

Comments
 (0)