1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Give ASAN some more stack

When compiling CMAKE_BUILD_TYPE=Debug WITH_ASAN using clang-7 -O2
the following tests could fail due to insufficient stack size:
main.signal_demo3 sys_vars.max_sp_recursion_depth_func
This commit is contained in:
Marko Mäkelä
2019-03-08 10:21:58 +02:00
parent 136d21c82f
commit 94eb56fb29
4 changed files with 10 additions and 10 deletions

View File

@ -1,17 +1,17 @@
#
# only global
#
--replace_result 372736 299008
--replace_result 392192 299008
select @@global.thread_stack;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
select @@session.thread_stack;
--replace_result 372736 299008
--replace_result 392192 299008
show global variables like 'thread_stack';
--replace_result 372736 299008
--replace_result 392192 299008
show session variables like 'thread_stack';
--replace_result 372736 299008
--replace_result 392192 299008
select * from information_schema.global_variables where variable_name='thread_stack';
--replace_result 372736 299008
--replace_result 392192 299008
select * from information_schema.session_variables where variable_name='thread_stack';
#