summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-07-01 15:01:24 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-07-01 17:21:16 +0200
commit75bc3446f815b602ab6821c18fb0a1b05b61580f (patch)
treee2085291c616ba10150f8a4e09582e1c4e8800ee
parentbe559e6c37e0618c5e3429c3bfd5223840d3654c (diff)
downloadphp-git-75bc3446f815b602ab6821c18fb0a1b05b61580f.tar.gz
Add missing SKIPIFs
All these tests are meant to run with OPcache available, and some will even fail inevitably without it, so we add OPcache as SKIPIF requirement.
-rw-r--r--ext/opcache/tests/block_pass_001.phpt2
-rw-r--r--ext/opcache/tests/block_removal_with_duplicate_successors.phpt2
-rw-r--r--ext/opcache/tests/bool_cp_in_pass1.phpt2
-rw-r--r--ext/opcache/tests/bug70423.phpt2
-rw-r--r--ext/opcache/tests/bug72762.phpt2
-rw-r--r--ext/opcache/tests/bug73654.phpt2
-rw-r--r--ext/opcache/tests/bug73668.phpt2
-rw-r--r--ext/opcache/tests/bug73746.phpt2
-rw-r--r--ext/opcache/tests/bug73789.phpt2
-rw-r--r--ext/opcache/tests/bug73847.phpt2
-rw-r--r--ext/opcache/tests/bug74431.phpt2
-rw-r--r--ext/opcache/tests/bug74442.phpt2
-rw-r--r--ext/opcache/tests/bug74623.phpt2
-rw-r--r--ext/opcache/tests/bug75255.phpt2
-rw-r--r--ext/opcache/tests/bug75570.phpt2
-rw-r--r--ext/opcache/tests/bug75608.phpt2
-rw-r--r--ext/opcache/tests/bug75893.phpt2
-rw-r--r--ext/opcache/tests/bug75938.phpt2
-rw-r--r--ext/opcache/tests/bug75969.phpt2
-rw-r--r--ext/opcache/tests/bug76074.phpt2
-rw-r--r--ext/opcache/tests/bug76275.phpt2
-rw-r--r--ext/opcache/tests/bug76281.phpt2
-rw-r--r--ext/opcache/tests/bug76796.phpt2
-rw-r--r--ext/opcache/tests/bug77058.phpt2
-rw-r--r--ext/opcache/tests/bug77092.phpt2
-rw-r--r--ext/opcache/tests/bug77215.phpt2
-rw-r--r--ext/opcache/tests/bug77691.phpt2
-rw-r--r--ext/opcache/tests/bug77743.phpt2
-rw-r--r--ext/opcache/tests/bug78106.phpt2
-rw-r--r--ext/opcache/tests/bug78185.phpt2
-rw-r--r--ext/opcache/tests/invalid_array_key_type.phpt2
-rw-r--r--ext/opcache/tests/jmpz_jmp_elim.phpt2
-rw-r--r--ext/opcache/tests/method_call_on_literal.phpt2
-rw-r--r--ext/opcache/tests/neg_range_inference.phpt2
-rw-r--r--ext/opcache/tests/optimize_func_calls_001.phpt2
-rw-r--r--ext/opcache/tests/send_unpack_empty_array.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_001.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_002.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_003.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_004.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_005.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_006.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_007.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_008.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_009.phpt2
-rw-r--r--ext/opcache/tests/ssa_bug_010.phpt2
-rw-r--r--ext/opcache/tests/switch_with_coinciding_targets.phpt2
-rw-r--r--ext/opcache/tests/verify_return_dfg.phpt2
-rw-r--r--ext/opcache/tests/wrong_inlining_005.phpt2
49 files changed, 98 insertions, 0 deletions
diff --git a/ext/opcache/tests/block_pass_001.phpt b/ext/opcache/tests/block_pass_001.phpt
index 556e76f543..c024b81ce8 100644
--- a/ext/opcache/tests/block_pass_001.phpt
+++ b/ext/opcache/tests/block_pass_001.phpt
@@ -1,5 +1,7 @@
--TEST--
Block pass: Bugs in BOOL/QM_ASSIGN elision
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
(bool) (true ? $x : $y);
diff --git a/ext/opcache/tests/block_removal_with_duplicate_successors.phpt b/ext/opcache/tests/block_removal_with_duplicate_successors.phpt
index 750a169014..afe5472d5b 100644
--- a/ext/opcache/tests/block_removal_with_duplicate_successors.phpt
+++ b/ext/opcache/tests/block_removal_with_duplicate_successors.phpt
@@ -1,5 +1,7 @@
--TEST--
Removing a block that has duplicate successors
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test($foo) {
diff --git a/ext/opcache/tests/bool_cp_in_pass1.phpt b/ext/opcache/tests/bool_cp_in_pass1.phpt
index 3857c4db30..edd08aeef6 100644
--- a/ext/opcache/tests/bool_cp_in_pass1.phpt
+++ b/ext/opcache/tests/bool_cp_in_pass1.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect constant propagation on BOOL in pass 1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test($foo) {
diff --git a/ext/opcache/tests/bug70423.phpt b/ext/opcache/tests/bug70423.phpt
index 030b8a24e8..015ed11b3f 100644
--- a/ext/opcache/tests/bug70423.phpt
+++ b/ext/opcache/tests/bug70423.phpt
@@ -5,6 +5,8 @@ open_basedir=.
opcache.enabled=1
opcache.enable_cli=1
opcache.log_verbosity_level=2
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug72762.phpt b/ext/opcache/tests/bug72762.phpt
index 8ce98bf438..e42cdf1850 100644
--- a/ext/opcache/tests/bug72762.phpt
+++ b/ext/opcache/tests/bug72762.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #72762: Infinite loop while parsing a file with opcache enabled
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug73654.phpt b/ext/opcache/tests/bug73654.phpt
index 164e10829c..f2db9ace96 100644
--- a/ext/opcache/tests/bug73654.phpt
+++ b/ext/opcache/tests/bug73654.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #73654: Segmentation fault in zend_call_function
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
echo xyz();
diff --git a/ext/opcache/tests/bug73668.phpt b/ext/opcache/tests/bug73668.phpt
index aac5c9e65c..379ba4a5ac 100644
--- a/ext/opcache/tests/bug73668.phpt
+++ b/ext/opcache/tests/bug73668.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #73668: "SIGFPE Arithmetic exception" in opcache when divide by minus 1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$a/-1;
diff --git a/ext/opcache/tests/bug73746.phpt b/ext/opcache/tests/bug73746.phpt
index c97833abcc..4f115575cf 100644
--- a/ext/opcache/tests/bug73746.phpt
+++ b/ext/opcache/tests/bug73746.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #73746 (Method that returns string returns UNKNOWN:0 instead)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
namespace Core\Bundle\Service\Property\Room\Rooms;
diff --git a/ext/opcache/tests/bug73789.phpt b/ext/opcache/tests/bug73789.phpt
index 142d5229f9..383bbbfa26 100644
--- a/ext/opcache/tests/bug73789.phpt
+++ b/ext/opcache/tests/bug73789.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #73789 (Strange behavior of class constants in switch/case block)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class Lexer
diff --git a/ext/opcache/tests/bug73847.phpt b/ext/opcache/tests/bug73847.phpt
index 7010dfbfb7..13d411e9e1 100644
--- a/ext/opcache/tests/bug73847.phpt
+++ b/ext/opcache/tests/bug73847.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #73847: Recursion when a variable is redefined as array
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test() {
diff --git a/ext/opcache/tests/bug74431.phpt b/ext/opcache/tests/bug74431.phpt
index 40948bac21..48609dc57b 100644
--- a/ext/opcache/tests/bug74431.phpt
+++ b/ext/opcache/tests/bug74431.phpt
@@ -4,6 +4,8 @@ Bug #74431 - foreach infinite loop
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=0xffffffff
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test(){
diff --git a/ext/opcache/tests/bug74442.phpt b/ext/opcache/tests/bug74442.phpt
index a4ad8e0540..55437c1826 100644
--- a/ext/opcache/tests/bug74442.phpt
+++ b/ext/opcache/tests/bug74442.phpt
@@ -2,6 +2,8 @@
Bug #74442: Opcached version produces a nested array
--CREDITS--
Eric Norris <erictnorris@gmail.com>
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class Schema_Base {
diff --git a/ext/opcache/tests/bug74623.phpt b/ext/opcache/tests/bug74623.phpt
index 4cd0b26135..e649e07b4c 100644
--- a/ext/opcache/tests/bug74623.phpt
+++ b/ext/opcache/tests/bug74623.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #74623: Infinite loop in type inference when using HTMLPurifier
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug75255.phpt b/ext/opcache/tests/bug75255.phpt
index 6d843dae73..2ff3ae0016 100644
--- a/ext/opcache/tests/bug75255.phpt
+++ b/ext/opcache/tests/bug75255.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #75255 (Request hangs and not finish)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function generatePlanImage() {
diff --git a/ext/opcache/tests/bug75570.phpt b/ext/opcache/tests/bug75570.phpt
index 7d23ce7260..90d0869d91 100644
--- a/ext/opcache/tests/bug75570.phpt
+++ b/ext/opcache/tests/bug75570.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #75570 ("Narrowing occurred during type inference" error)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function renderRawGraph(array $parents) {
diff --git a/ext/opcache/tests/bug75608.phpt b/ext/opcache/tests/bug75608.phpt
index 875e102ac8..aaee526d86 100644
--- a/ext/opcache/tests/bug75608.phpt
+++ b/ext/opcache/tests/bug75608.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #75608 ("Narrowing occurred during type inference" error)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class ReactionRatingService
diff --git a/ext/opcache/tests/bug75893.phpt b/ext/opcache/tests/bug75893.phpt
index 670993c50c..9ca713b121 100644
--- a/ext/opcache/tests/bug75893.phpt
+++ b/ext/opcache/tests/bug75893.phpt
@@ -3,6 +3,8 @@ Bug #75893: file_get_contents $http_response_header variable bugged with opcache
--INI--
opcache.enable_cli=1
track_errors=1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug75938.phpt b/ext/opcache/tests/bug75938.phpt
index 113745ff65..cfe6a65503 100644
--- a/ext/opcache/tests/bug75938.phpt
+++ b/ext/opcache/tests/bug75938.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #75938: Modulus value not stored in variable
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function borken($columns) {
diff --git a/ext/opcache/tests/bug75969.phpt b/ext/opcache/tests/bug75969.phpt
index 733ab2f9b7..d7651faca3 100644
--- a/ext/opcache/tests/bug75969.phpt
+++ b/ext/opcache/tests/bug75969.phpt
@@ -3,6 +3,8 @@ Bug #75969: Assertion failure in live range DCE due to block pass misoptimizatio
--INI--
opcache.enable_cli=1
opcache.optimization_level=-1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug76074.phpt b/ext/opcache/tests/bug76074.phpt
index b6ad7cb587..d12ebb26fa 100644
--- a/ext/opcache/tests/bug76074.phpt
+++ b/ext/opcache/tests/bug76074.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #76074 (opcache corrupts variable in for-loop)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug76275.phpt b/ext/opcache/tests/bug76275.phpt
index 743dac7525..52d69ef14c 100644
--- a/ext/opcache/tests/bug76275.phpt
+++ b/ext/opcache/tests/bug76275.phpt
@@ -4,6 +4,8 @@ Bug #76275: Assertion failure in file cache when unserializing empty try_catch_a
opcache.enabled=1
opcache.enable_cli=1
opcache.file_cache={TMP}
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug76281.phpt b/ext/opcache/tests/bug76281.phpt
index 83c42f3a28..103d299a9e 100644
--- a/ext/opcache/tests/bug76281.phpt
+++ b/ext/opcache/tests/bug76281.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #76281: Opcache causes incorrect "undefined variable" errors
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug76796.phpt b/ext/opcache/tests/bug76796.phpt
index 8388484e10..ba7e26a0d5 100644
--- a/ext/opcache/tests/bug76796.phpt
+++ b/ext/opcache/tests/bug76796.phpt
@@ -5,6 +5,8 @@ opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
disable_functions=strpos
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug77058.phpt b/ext/opcache/tests/bug77058.phpt
index 6a5a83cef7..a1962b7ade 100644
--- a/ext/opcache/tests/bug77058.phpt
+++ b/ext/opcache/tests/bug77058.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #77058: Type inference in opcache causes side effects
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug77092.phpt b/ext/opcache/tests/bug77092.phpt
index 9e64c50e77..6e61738d64 100644
--- a/ext/opcache/tests/bug77092.phpt
+++ b/ext/opcache/tests/bug77092.phpt
@@ -3,6 +3,8 @@ Bug #77092: array_diff_key() - segmentation fault
--INI--
opcache.enable_cli=1
opcache.optimization_level=-1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test() {
diff --git a/ext/opcache/tests/bug77215.phpt b/ext/opcache/tests/bug77215.phpt
index b883c88a55..26af4432da 100644
--- a/ext/opcache/tests/bug77215.phpt
+++ b/ext/opcache/tests/bug77215.phpt
@@ -3,6 +3,8 @@ Bug #77215: CFG assertion failure on multiple finalizing switch frees in one blo
--INI--
opcache.enable_cli=1
opcache.optimization_level=-1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug77691.phpt b/ext/opcache/tests/bug77691.phpt
index 998a3487d1..22726a36a0 100644
--- a/ext/opcache/tests/bug77691.phpt
+++ b/ext/opcache/tests/bug77691.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #77691: Opcache passes wrong value for inline array push assignments
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug77743.phpt b/ext/opcache/tests/bug77743.phpt
index 95f8349472..b73da2baaf 100644
--- a/ext/opcache/tests/bug77743.phpt
+++ b/ext/opcache/tests/bug77743.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug78106.phpt b/ext/opcache/tests/bug78106.phpt
index 55cc53e767..87a524851d 100644
--- a/ext/opcache/tests/bug78106.phpt
+++ b/ext/opcache/tests/bug78106.phpt
@@ -1,5 +1,7 @@
--TEST--
Bug #78106: Path resolution fails if opcache disabled during request
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/bug78185.phpt b/ext/opcache/tests/bug78185.phpt
index 1723a16474..51a89f98d3 100644
--- a/ext/opcache/tests/bug78185.phpt
+++ b/ext/opcache/tests/bug78185.phpt
@@ -5,6 +5,8 @@ opcache.enable_cli=1
opcache.optimization_level=-1
opcache.file_cache={PWD}
opcache.file_cache_only=1
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
if (substr(PHP_OS, 0, 3) !== 'WIN') {
diff --git a/ext/opcache/tests/invalid_array_key_type.phpt b/ext/opcache/tests/invalid_array_key_type.phpt
index f2e65bedba..bac62f265a 100644
--- a/ext/opcache/tests/invalid_array_key_type.phpt
+++ b/ext/opcache/tests/invalid_array_key_type.phpt
@@ -1,5 +1,7 @@
--TEST--
Don't add array value type is key type is illegal
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/jmpz_jmp_elim.phpt b/ext/opcache/tests/jmpz_jmp_elim.phpt
index 2749b41b7a..8a343512dd 100644
--- a/ext/opcache/tests/jmpz_jmp_elim.phpt
+++ b/ext/opcache/tests/jmpz_jmp_elim.phpt
@@ -1,5 +1,7 @@
--TEST--
Edge-cases in elimination of JMPZ JMP with same target
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/method_call_on_literal.phpt b/ext/opcache/tests/method_call_on_literal.phpt
index bf89caa418..48a72ea58d 100644
--- a/ext/opcache/tests/method_call_on_literal.phpt
+++ b/ext/opcache/tests/method_call_on_literal.phpt
@@ -1,5 +1,7 @@
--TEST--
Literal compaction should take method calls on literals into account
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/neg_range_inference.phpt b/ext/opcache/tests/neg_range_inference.phpt
index b3dd4a72be..e24ac3f7a2 100644
--- a/ext/opcache/tests/neg_range_inference.phpt
+++ b/ext/opcache/tests/neg_range_inference.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect negative range inference
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/optimize_func_calls_001.phpt b/ext/opcache/tests/optimize_func_calls_001.phpt
index 5745b3fad0..21926d0e05 100644
--- a/ext/opcache/tests/optimize_func_calls_001.phpt
+++ b/ext/opcache/tests/optimize_func_calls_001.phpt
@@ -1,5 +1,7 @@
--TEST--
Don't create FETCH_DIM_R with UNUSED op2
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/send_unpack_empty_array.phpt b/ext/opcache/tests/send_unpack_empty_array.phpt
index 4059ad40f1..f2325626f1 100644
--- a/ext/opcache/tests/send_unpack_empty_array.phpt
+++ b/ext/opcache/tests/send_unpack_empty_array.phpt
@@ -1,5 +1,7 @@
--TEST--
Type inference of SEND_UNPACK with empty array
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test() {
diff --git a/ext/opcache/tests/ssa_bug_001.phpt b/ext/opcache/tests/ssa_bug_001.phpt
index 56757f56a4..62613e6eee 100644
--- a/ext/opcache/tests/ssa_bug_001.phpt
+++ b/ext/opcache/tests/ssa_bug_001.phpt
@@ -1,5 +1,7 @@
--TEST--
SSA constrution for CFG with unreachable basic blocks
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class X {
diff --git a/ext/opcache/tests/ssa_bug_002.phpt b/ext/opcache/tests/ssa_bug_002.phpt
index 9ff6f799f4..10b03a84ca 100644
--- a/ext/opcache/tests/ssa_bug_002.phpt
+++ b/ext/opcache/tests/ssa_bug_002.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect NOP removal on jump to NOP
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/ssa_bug_003.phpt b/ext/opcache/tests/ssa_bug_003.phpt
index 2895551c08..c8014383ca 100644
--- a/ext/opcache/tests/ssa_bug_003.phpt
+++ b/ext/opcache/tests/ssa_bug_003.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect elision of return type checks
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/ssa_bug_004.phpt b/ext/opcache/tests/ssa_bug_004.phpt
index 20e313045a..b26479d66a 100644
--- a/ext/opcache/tests/ssa_bug_004.phpt
+++ b/ext/opcache/tests/ssa_bug_004.phpt
@@ -1,5 +1,7 @@
--TEST--
Assign elision exception safety: ICALL
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/ssa_bug_005.phpt b/ext/opcache/tests/ssa_bug_005.phpt
index fb373e36b3..5c5965c1a1 100644
--- a/ext/opcache/tests/ssa_bug_005.phpt
+++ b/ext/opcache/tests/ssa_bug_005.phpt
@@ -1,5 +1,7 @@
--TEST--
Assign elision exception safety: UCALL
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/ssa_bug_006.phpt b/ext/opcache/tests/ssa_bug_006.phpt
index 624c1e0047..39e68230c5 100644
--- a/ext/opcache/tests/ssa_bug_006.phpt
+++ b/ext/opcache/tests/ssa_bug_006.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect optimization of $i = $i++
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/ssa_bug_007.phpt b/ext/opcache/tests/ssa_bug_007.phpt
index 9eab31cf89..e5237687b2 100644
--- a/ext/opcache/tests/ssa_bug_007.phpt
+++ b/ext/opcache/tests/ssa_bug_007.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect CFG/SSA construction for SWITCH with few identical successors
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function render($properties) {
diff --git a/ext/opcache/tests/ssa_bug_008.phpt b/ext/opcache/tests/ssa_bug_008.phpt
index e12e0922b1..adee4431b5 100644
--- a/ext/opcache/tests/ssa_bug_008.phpt
+++ b/ext/opcache/tests/ssa_bug_008.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect CFG/SSA reconstruction
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
if (!is_int($info = gc_collect_cycles()) || ($info < 100)) {
diff --git a/ext/opcache/tests/ssa_bug_009.phpt b/ext/opcache/tests/ssa_bug_009.phpt
index a6248ff5bd..482c6f85fc 100644
--- a/ext/opcache/tests/ssa_bug_009.phpt
+++ b/ext/opcache/tests/ssa_bug_009.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect type inference
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class PHP_CodeCoverage
diff --git a/ext/opcache/tests/ssa_bug_010.phpt b/ext/opcache/tests/ssa_bug_010.phpt
index 1eadaa2f53..99a1594121 100644
--- a/ext/opcache/tests/ssa_bug_010.phpt
+++ b/ext/opcache/tests/ssa_bug_010.phpt
@@ -1,5 +1,7 @@
--TEST--
Wrong assertion
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function foo($parts, $a, $b) {
diff --git a/ext/opcache/tests/switch_with_coinciding_targets.phpt b/ext/opcache/tests/switch_with_coinciding_targets.phpt
index 1dd75e76b0..729af9617f 100644
--- a/ext/opcache/tests/switch_with_coinciding_targets.phpt
+++ b/ext/opcache/tests/switch_with_coinciding_targets.phpt
@@ -1,5 +1,7 @@
--TEST--
Switch where all targets, including default, coincide
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
diff --git a/ext/opcache/tests/verify_return_dfg.phpt b/ext/opcache/tests/verify_return_dfg.phpt
index f2e66511ed..53f9e74f53 100644
--- a/ext/opcache/tests/verify_return_dfg.phpt
+++ b/ext/opcache/tests/verify_return_dfg.phpt
@@ -1,5 +1,7 @@
--TEST--
Incorrect liveness computation for verify-return
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function test($foo): string
diff --git a/ext/opcache/tests/wrong_inlining_005.phpt b/ext/opcache/tests/wrong_inlining_005.phpt
index b34cd1b12f..0526a7b035 100644
--- a/ext/opcache/tests/wrong_inlining_005.phpt
+++ b/ext/opcache/tests/wrong_inlining_005.phpt
@@ -1,5 +1,7 @@
--TEST--
Inlining of functions with ref arguments
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
--FILE--
<?php