File tree 6 files changed +2
-18
lines changed
6 files changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -185,10 +185,6 @@ jobs:
185
185
-d opcache.jit_max_root_traces=100000 \
186
186
-d opcache.jit_max_side_traces=100000 \
187
187
-d opcache.jit_max_exit_counters=100000 \
188
- -d opcache.jit_hot_loop=1 \
189
- -d opcache.jit_hot_func=1 \
190
- -d opcache.jit_hot_return=1 \
191
- -d opcache.jit_hot_side_exit=1 \
192
188
-d opcache.jit=tracing \
193
189
-P -q -x -j2 \
194
190
-g FAIL,BORK,LEAK,XLEAK \
Original file line number Diff line number Diff line change 47
47
-d opcache.jit_max_root_traces=100000 \
48
48
-d opcache.jit_max_side_traces=100000 \
49
49
-d opcache.jit_max_exit_counters=100000 \
50
- -d opcache.jit_hot_loop=1 \
51
- -d opcache.jit_hot_func=1 \
52
- -d opcache.jit_hot_return=1 \
53
- -d opcache.jit_hot_side_exit=1 \
54
50
-j$(/usr/bin/nproc) \
55
51
-g FAIL,BORK,LEAK,XLEAK \
56
52
--no-progress \
Original file line number Diff line number Diff line change 26
26
-d opcache.jit_max_root_traces=100000 \
27
27
-d opcache.jit_max_side_traces=100000 \
28
28
-d opcache.jit_max_exit_counters=100000 \
29
- -d opcache.jit_hot_loop=1 \
30
- -d opcache.jit_hot_func=1 \
31
- -d opcache.jit_hot_return=1 \
32
- -d opcache.jit_hot_side_exit=1 \
33
29
-j$(sysctl -n hw.ncpu) \
34
30
-g FAIL,BORK,LEAK,XLEAK \
35
31
--no-progress \
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ set OPENSSL_CONF=
83
83
rem set SSLEAY_CONF=
84
84
85
85
rem prepare for OPcache
86
- 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_hot_loop= 1 -d opcache.jit_hot_func= 1 -d opcache.jit_hot_return= 1 -d opcache.jit_hot_side_exit= 1 -d opcache. jit=tracing
86
+ 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
87
87
rem work-around for failing to dl(mysqli) with OPcache (https://github.com/php/php-src/issues/8508)
88
88
if " %OPCACHE% " equ " 1" set OPCACHE_OPTS = %OPCACHE_OPTS% -d extension=mysqli
89
89
Original file line number Diff line number Diff line change @@ -383,10 +383,6 @@ jobs:
383
383
echo opcache.jit_max_root_traces=100000 >> /etc/php.d/opcache.ini
384
384
echo opcache.jit_max_side_traces=100000 >> /etc/php.d/opcache.ini
385
385
echo opcache.jit_max_exit_counters=100000 >> /etc/php.d/opcache.ini
386
- echo opcache.jit_hot_loop=1 >> /etc/php.d/opcache.ini
387
- echo opcache.jit_hot_func=1 >> /etc/php.d/opcache.ini
388
- echo opcache.jit_hot_return=1 >> /etc/php.d/opcache.ini
389
- echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
390
386
echo memory_limit=-1 >> /etc/php.d/opcache.ini
391
387
php -v
392
388
- name : Test AMPHP
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ before_script:
85
85
86
86
# Run PHPs run-tests.php
87
87
script :
88
- - travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -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_hot_loop=1 -d opcache.jit_hot_func=1 -d opcache.jit_hot_return=1 -d opcache.jit_hot_side_exit=1
88
+ - travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -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
89
89
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
90
90
91
91
after_success :
You can’t perform that action at this time.
0 commit comments