File tree Expand file tree Collapse file tree 5 files changed +5
-2
lines changed
Expand file tree Collapse file tree 5 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4040 export SKIP_IO_CAPTURE_TESTS=1
4141 export STACK_LIMIT_DEFAULTS_CHECK=1
4242 sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
43+ ${{ inputs.jitType == 'disable' && '' || '--repeat 2' }} \
4344 -d opcache.jit=${{ inputs.jitType }} \
4445 -d opcache.protect_memory=1 \
4546 -d opcache.jit_buffer_size=64M \
Original file line number Diff line number Diff line change 1616 export CI_NO_IPV6=1
1717 export STACK_LIMIT_DEFAULTS_CHECK=1
1818 sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
19+ ${{ inputs.jitType == 'disable' && '' || '--repeat 2' }} \
1920 -d opcache.jit=${{ inputs.jitType }} \
2021 -d opcache.protect_memory=1 \
2122 -d opcache.jit_buffer_size=64M \
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ set OPENSSL_CONF=
8888rem set SSLEAY_CONF=
8989
9090rem prepare for OPcache
91- if " %OPCACHE% " equ " 1" set OPCACHE_OPTS = -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit=tracing
91+ if " %OPCACHE% " equ " 1" set OPCACHE_OPTS = -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces= 100000 -d opcache.jit_max_side_traces= 100000 -d opcache.jit_max_exit_counters= 100000 -d opcache. jit=tracing --repeat 2
9292
9393rem prepare for enchant
9494mkdir %~d0 \usr\local\lib\enchant-2
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ jobs:
124124 configuration_parameters : >-
125125 CFLAGS="-fsanitize=undefined,address -DZEND_TRACK_ARENA_ALLOC"
126126 LDFLAGS="-fsanitize=undefined,address"
127- run_tests_parameters : ' --asan'
127+ run_tests_parameters : ' --asan --repeat 2 '
128128 test_function_jit : false
129129 asan : true
130130 - name : _REPEAT
Original file line number Diff line number Diff line change 22Bug #71542 (disk_total_space does not work with relative paths)
33--FILE--
44<?php
5+ chdir (__DIR__ );
56$ dir = basename (getcwd ());
67chdir (".. " );
78var_dump (
You can’t perform that action at this time.
0 commit comments