mirror of https://github.com/python/cpython
bpo-46308: Fix unportable test(1) operator in configure script (GH-30490)
This commit is contained in:
parent
0fc58c1e05
commit
3d11c1b8b4
|
@ -10315,7 +10315,7 @@ then
|
|||
# small for the default recursion limit. Increase the stack size
|
||||
# to ensure that tests don't crash
|
||||
stack_size="1000000" # 16 MB
|
||||
if test "$with_ubsan" == "yes"
|
||||
if test "$with_ubsan" = "yes"
|
||||
then
|
||||
# Undefined behavior sanitizer requires an even deeper stack
|
||||
stack_size="4000000" # 64 MB
|
||||
|
|
|
@ -2861,7 +2861,7 @@ then
|
|||
# small for the default recursion limit. Increase the stack size
|
||||
# to ensure that tests don't crash
|
||||
stack_size="1000000" # 16 MB
|
||||
if test "$with_ubsan" == "yes"
|
||||
if test "$with_ubsan" = "yes"
|
||||
then
|
||||
# Undefined behavior sanitizer requires an even deeper stack
|
||||
stack_size="4000000" # 64 MB
|
||||
|
|
Loading…
Reference in New Issue