File tree Expand file tree Collapse file tree 4 files changed +4
-26
lines changed Expand file tree Collapse file tree 4 files changed +4
-26
lines changed Original file line number Diff line number Diff line change 4141 CXX : ccache g++
4242jobs :
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 :
Original file line number Diff line number Diff 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 {((_JUMP_BUFFER*)&a)-> Frame = 0 ; longjmp (a, b);} while ( 0 )
404404# define JMP_BUF jmp_buf
405405#endif
406406
Original file line number Diff line number Diff line change 22GH-14639 (Member access within null pointer in ext/spl/spl_observer.c)
33--INI--
44memory_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 ();
Original file line number Diff line number Diff line change @@ -5,14 +5,6 @@ Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
55if (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
You can’t perform that action at this time.
0 commit comments