Skip to content

Commit 330d639

Browse files
committed
Revert "Dynamically xfail test cases which fail on CI (phpGH-15710)"
This reverts commit 6d59620.
1 parent fdb6900 commit 330d639

File tree

5 files changed

+0
-43
lines changed

5 files changed

+0
-43
lines changed

Zend/tests/bug54268.phpt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ $zend_mm_enabled = getenv("USE_ZEND_ALLOC");
88
if ($zend_mm_enabled === "0") {
99
die("skip Zend MM disabled");
1010
}
11-
$tracing = extension_loaded("Zend OPcache")
12-
&& ($conf = opcache_get_configuration()["directives"])
13-
&& array_key_exists("opcache.jit", $conf)
14-
&& $conf["opcache.jit"] === "tracing";
15-
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
16-
$url = "https://github.com/php/php-src/issues/15709";
17-
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
18-
}
1911
?>
2012
--FILE--
2113
<?php

Zend/tests/gh9407.phpt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
--TEST--
22
GH-9407: LSP error in eval'd code refers to wrong class for static type
3-
--SKIPIF--
4-
<?php
5-
$tracing = extension_loaded("Zend OPcache")
6-
&& ($conf = opcache_get_configuration()["directives"])
7-
&& array_key_exists("opcache.jit", $conf)
8-
&& $conf["opcache.jit"] === "tracing";
9-
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
10-
$url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979";
11-
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
12-
}
13-
?>
143
--FILE--
154
<?php
165

Zend/tests/stack_limit/stack_limit_014.phpt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ Stack limit 014 - Fuzzer
44
<?php
55
if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_call_stack_get() is not available");
66
if (getenv("SKIP_SLOW_TESTS")) die('skip slow test');
7-
$tracing = extension_loaded("Zend OPcache")
8-
&& ($conf = opcache_get_configuration()["directives"])
9-
&& array_key_exists("opcache.jit", $conf)
10-
&& $conf["opcache.jit"] === "tracing";
11-
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
12-
$url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979";
13-
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
14-
}
157
?>
168
--EXTENSIONS--
179
zend_test

ext/spl/tests/gh14639.phpt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,6 @@ memory_limit=2M
77
if (getenv("USE_ZEND_ALLOC") === "0") {
88
die("skip Zend MM disabled");
99
}
10-
$tracing = extension_loaded("Zend OPcache")
11-
&& ($conf = opcache_get_configuration()["directives"])
12-
&& array_key_exists("opcache.jit", $conf)
13-
&& $conf["opcache.jit"] === "tracing";
14-
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
15-
$url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979";
16-
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
17-
}
1810
?>
1911
--FILE--
2012
<?php

tests/lang/bug45392.phpt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@ Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
55
if (getenv("USE_ZEND_ALLOC") === "0") {
66
die("skip Zend MM disabled");
77
}
8-
$tracing = extension_loaded("Zend OPcache")
9-
&& ($conf = opcache_get_configuration()["directives"])
10-
&& array_key_exists("opcache.jit", $conf)
11-
&& $conf["opcache.jit"] === "tracing";
12-
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
13-
$url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979";
14-
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
15-
}
168
?>
179
--FILE--
1810
<?php

0 commit comments

Comments
 (0)