Skip to content

Commit

Permalink
Fix GH-12643: Stack limit tests failing on ppc64le
Browse files Browse the repository at this point in the history
These tests were setting zend.max_allowed_stack_size to a small value. On ppc64le
this value is too small and the limit may be reached too soon.
  • Loading branch information
arnaud-lb committed Dec 10, 2023
1 parent 43900bd commit dad6912
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Zend/tests/stack_limit/stack_limit_003.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_
--EXTENSIONS--
zend_test
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php

Expand Down
2 changes: 1 addition & 1 deletion Zend/tests/stack_limit/stack_limit_007.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_
--EXTENSIONS--
zend_test
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php

Expand Down
2 changes: 1 addition & 1 deletion Zend/tests/stack_limit/stack_limit_008.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_
--EXTENSIONS--
zend_test
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php

Expand Down
2 changes: 1 addition & 1 deletion Zend/tests/stack_limit/stack_limit_011.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_
--EXTENSIONS--
zend_test
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php

Expand Down
2 changes: 1 addition & 1 deletion Zend/tests/stack_limit/stack_limit_012.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (!function_exists('zend_test_zend_call_stack_get')) die("skip zend_test_zend_
--EXTENSIONS--
zend_test
--INI--
zend.max_allowed_stack_size=128K
zend.max_allowed_stack_size=256K
--FILE--
<?php

Expand Down

0 comments on commit dad6912

Please sign in to comment.