diff options
author | unknown <msvensson@neptunus.(none)> | 2006-05-03 20:04:57 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-05-03 20:04:57 +0200 |
commit | 23aeb617edc9ba91703813c07317b9af95cb89a2 (patch) | |
tree | 8e6030e942b88d4626bc2cf49eef47fde9075cef /mysql-test/mysql-test-run.pl | |
parent | 8d1b76e7f63b660976f82d66e6bc2ba4e0c4fab2 (diff) | |
download | mariadb-git-23aeb617edc9ba91703813c07317b9af95cb89a2.tar.gz |
Check if "../libtool" is available and use it only when it is.
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 08b9ade72a1..78a665d4f00 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -134,7 +134,6 @@ our $glob_win32= 0; # OS and native Win32 executables our $glob_win32_perl= 0; # ActiveState Win32 Perl our $glob_cygwin_perl= 0; # Cygwin Perl our $glob_cygwin_shell= undef; -our $glob_use_libtool= 1; our $glob_mysql_test_dir= undef; our $glob_mysql_bench_dir= undef; our $glob_hostname= undef; @@ -444,13 +443,6 @@ sub initial_setup () { $glob_cygwin_perl= ($^O eq "cygwin"); $glob_win32= ($glob_win32_perl or $glob_cygwin_perl); - # Use libtool on all platforms except windows - if ( $glob_win32 ) - { - $glob_use_libtool= 0; - } - $exe_libtool= "../libtool"; - # We require that we are in the "mysql-test" directory # to run mysql-test-run @@ -1001,6 +993,21 @@ sub snapshot_setup () { sub executable_setup () { + # + # Check if libtool is available in this distribution/clone + # we need it when valgrinding or debugging non installed binary + # Otherwise valgrind will valgrind the libtool wrapper or bash + # and gdb will not find the real executable to debug + # + if ( -x "../libtool") + { + $exe_libtool= "../libtool"; + if ($opt_valgrind or $glob_debugger) + { + mtr_report("Using \"$exe_libtool\" when running valgrind or debugger"); + } + } + if ( $opt_source_dist ) { if ( $glob_win32 ) @@ -2626,7 +2633,7 @@ sub mysqld_start ($$$$$) { $exe= undef; } - if ($glob_use_libtool and $opt_valgrind) + if ($exe_libtool and $opt_valgrind) { # Add "libtool --mode-execute" # if running in valgrind(to avoid valgrinding bash) @@ -3132,7 +3139,7 @@ sub run_mysqltest ($) { debugger_arguments(\$args, \$exe, "client"); } - if ($glob_use_libtool and $opt_valgrind) + if ($exe_libtool and $opt_valgrind) { # Add "libtool --mode-execute" before the test to execute # if running in valgrind(to avoid valgrinding bash) @@ -3207,7 +3214,7 @@ sub gdb_arguments { mtr_add_arg($$args, "$type"); mtr_add_arg($$args, "-e"); - if ( $glob_use_libtool ) + if ( $exe_libtool ) { mtr_add_arg($$args, $exe_libtool); mtr_add_arg($$args, "--mode=execute"); @@ -3270,7 +3277,7 @@ sub ddd_arguments { my $save_exe= $$exe; $$args= []; - if ( $glob_use_libtool ) + if ( $exe_libtool ) { $$exe= $exe_libtool; mtr_add_arg($$args, "--mode=execute"); |