Skip to content

Commit 6a494b3

Browse files
committed
test
1 parent 207883e commit 6a494b3

File tree

4 files changed

+4
-26
lines changed

4 files changed

+4
-26
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ env:
4141
CXX: ccache g++
4242
jobs:
4343
LINUX_X64:
44-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
44+
if: false
4545
services:
4646
mysql:
4747
image: mysql:8.3
@@ -137,7 +137,7 @@ jobs:
137137
if: ${{ !matrix.asan }}
138138
uses: ./.github/actions/verify-generated-files
139139
LINUX_X32:
140-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
140+
if: false
141141
name: LINUX_X32_DEBUG_ZTS
142142
runs-on: ubuntu-latest
143143
timeout-minutes: 50
@@ -183,7 +183,7 @@ jobs:
183183
-d zend_extension=opcache.so
184184
-d opcache.enable_cli=1
185185
MACOS_DEBUG_NTS:
186-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
186+
if: false
187187
strategy:
188188
fail-fast: false
189189
matrix:

Zend/zend_portability.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ char *alloca();
400400
# define JMP_BUF sigjmp_buf
401401
#else
402402
# define SETJMP(a) setjmp(a)
403-
# define LONGJMP(a,b) longjmp(a, b)
403+
# define LONGJMP(a,b) do { a.Frame=0; longjmp(a, b); } while (0)
404404
# define JMP_BUF jmp_buf
405405
#endif
406406

ext/spl/tests/gh14639.phpt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,6 @@
22
GH-14639 (Member access within null pointer in ext/spl/spl_observer.c)
33
--INI--
44
memory_limit=2M
5-
--SKIPIF--
6-
<?php
7-
if (getenv("USE_ZEND_ALLOC") === "0") {
8-
die("skip Zend MM disabled");
9-
}
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-
}
18-
?>
195
--FILE--
206
<?php
217
$b = new SplObjectStorage();

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)