Commit f78078a8 authored by Sergei Golubchik's avatar Sergei Golubchik

mtr+valgrind: fix jemalloc check to work correctly for bundler and system jemalloc

parent 2877c5ec
...@@ -6187,7 +6187,6 @@ sub debugger_arguments { ...@@ -6187,7 +6187,6 @@ sub debugger_arguments {
} }
} }
# #
# Modify the exe and args so that program is run in valgrind # Modify the exe and args so that program is run in valgrind
# #
...@@ -6209,10 +6208,14 @@ sub valgrind_arguments { ...@@ -6209,10 +6208,14 @@ sub valgrind_arguments {
if -f "$glob_mysql_test_dir/valgrind.supp"; if -f "$glob_mysql_test_dir/valgrind.supp";
# Ensure the jemalloc works with mysqld # Ensure the jemalloc works with mysqld
if ($mysqld_variables{'version-malloc-library'} ne "system" && if ($$exe =~ /mysqld/)
$$exe =~ /mysqld/)
{ {
mtr_add_arg($args, "--soname-synonyms=somalloc=NONE" ); my %somalloc=(
'system jemalloc' => 'libjemalloc*',
'bundled jemalloc' => 'NONE'
);
my ($syn) = $somalloc{$mysqld_variables{'version-malloc-library'}};
mtr_add_arg($args, '--soname-synonyms=somalloc=%s', $syn) if $syn;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment