summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/thread_stack_basic.test
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-03-08 10:21:58 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2019-03-08 10:40:30 +0200
commit94eb56fb29334a1075103becb625685b23f7d437 (patch)
treeebf33eb8386348c44c0e5bba0505fe3461dc4044 /mysql-test/suite/sys_vars/t/thread_stack_basic.test
parent136d21c82f835dd85a53057c67d4476f5b971a47 (diff)
downloadmariadb-git-94eb56fb29334a1075103becb625685b23f7d437.tar.gz
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
Diffstat (limited to 'mysql-test/suite/sys_vars/t/thread_stack_basic.test')
-rw-r--r--mysql-test/suite/sys_vars/t/thread_stack_basic.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/suite/sys_vars/t/thread_stack_basic.test b/mysql-test/suite/sys_vars/t/thread_stack_basic.test
index bfd3fb40db3..41015033fe9 100644
--- a/mysql-test/suite/sys_vars/t/thread_stack_basic.test
+++ b/mysql-test/suite/sys_vars/t/thread_stack_basic.test
@@ -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';
#