Skip to content

Commit 3e25ddb

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Add missing SKIPIFs
2 parents 99e6c70 + 57688ad commit 3e25ddb

File tree

9 files changed

+16
-0
lines changed

9 files changed

+16
-0
lines changed

ext/opcache/tests/bug75729.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--TEST--
22
Bug #75729: opcache segfault when installing Bitrix
33
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
45
<?php if (!extension_loaded('mbstring')) die('skip mbstring not loaded'); ?>
56
--INI--
67
opcache.enable_cli=1

ext/opcache/tests/bug76337.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--TEST--
22
Bug 76337: segmentation fault when an extension use zend_register_class_alias() and opcache enabled
33
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
45
<?php if (!extension_loaded('zend-test')) die('skip zend-test extension not loaded');
56
--INI--
67
opcache.enable=1

ext/opcache/tests/bug77257.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #77257: value of variable assigned in a switch() construct gets lost
3+
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
35
--FILE--
46
<?php
57
function test($x) {

ext/opcache/tests/bug77275.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Bug #77275: OPcache optimization problem for ArrayAccess->offsetGet(string)
33
--INI--
44
opcache.enable_cli=1
55
opcache.optimization_level=-1
6+
--SKIPIF--
7+
<?php require_once('skipif.inc'); ?>
68
--FILE--
79
<?php
810
namespace Foo;

ext/opcache/tests/bug77310_1.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #77310 (1): Incorrect SCCP for compound assign to arrays
3+
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
35
--FILE--
46
<?php
57

ext/opcache/tests/bug78015.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Bug #78015: Incorrect evaluation of expressions involving partials array in SCCP
3+
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
35
--FILE--
46
<?php
57

ext/opcache/tests/invalid_new_dce.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Throwings NEWs should not be DCEd
33
--INI--
44
opcache.enable_cli=1
55
opcache.optimization_level=-1
6+
--SKIPIF--
7+
<?php require_once('skipif.inc'); ?>
68
--FILE--
79
<?php
810

ext/opcache/tests/jmp_elim_004.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Incorrect empty basic block elimination
33
--INI--
44
opcache.enable_cli=1
55
opcache.optimization_level=-1
6+
--SKIPIF--
7+
<?php require_once('skipif.inc'); ?>
68
--FILE--
79
<?php
810

ext/opcache/tests/ssa_bug_011.phpt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
--TEST--
22
Wrong assertion
3+
--SKIPIF--
4+
<?php require_once('skipif.inc'); ?>
35
--FILE--
46
<?php
57
function foo($transitions) {

0 commit comments

Comments
 (0)