From: Bjorn Munch Date: February 7 2011 11:55pm Subject: bzr push into mysql-trunk branch (bjorn.munch:3604 to 3606) List-Archive: http://lists.mysql.com/commits/130649 Message-Id: <201102072355.p17NtPtI021318@khepri15.norway.sun.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3606 Bjorn Munch 2011-02-08 [merge] null upmerge 3605 Bjorn Munch 2011-02-08 [merge] merge 47141,59979 modified: mysql-test/mysql-test-run.pl 3604 Tor Didriksen 2011-02-07 Bug #59632, post-push fix for unit test. thd->thread_stack must point to the stack, not free-store. Also: add an extra 'mysys' to the link command for SERVER_TESTS. (it failed to link on debian) modified: unittest/gunit/CMakeLists.txt unittest/gunit/item-t.cc === modified file 'mysql-test/mysql-test-run.pl' --- a/mysql-test/mysql-test-run.pl 2011-01-29 23:40:42 +0000 +++ b/mysql-test/mysql-test-run.pl 2011-02-07 11:57:55 +0000 @@ -192,6 +192,7 @@ my $opt_explain_protocol; our $opt_debug; my $debug_d= "d"; my $opt_debug_common; +our $opt_debug_server; our @opt_cases; # The test cases names in argv our $opt_embedded_server; @@ -981,6 +982,7 @@ sub command_line_setup { # Debugging 'debug' => \$opt_debug, 'debug-common' => \$opt_debug_common, + 'debug-server' => \$opt_debug_server, 'gdb' => \$opt_gdb, 'client-gdb' => \$opt_client_gdb, 'manual-gdb' => \$opt_manual_gdb, @@ -1137,6 +1139,9 @@ sub command_line_setup { ($auth_plugin)= find_plugin("auth_test_plugin", "plugin/auth"); + # --debug[-common] implies we run debug server + $opt_debug_server= 1 if $opt_debug || $opt_debug_common; + if (using_extern()) { # Connect to the running mysqld and find out what it supports @@ -1789,7 +1794,7 @@ sub find_mysqld { my @mysqld_names= ("mysqld", "mysqld-max-nt", "mysqld-max", "mysqld-nt"); - if ( $opt_debug ){ + if ( $opt_debug_server ){ # Put mysqld-debug first in the list of binaries to look for mtr_verbose("Adding mysqld-debug first in list of binaries to look for"); unshift(@mysqld_names, "mysqld-debug"); @@ -1886,9 +1891,12 @@ sub executable_setup () { sub client_debug_arg($$) { my ($args, $client_name)= @_; + # Workaround for Bug #50627: drop any debug opt + return if $client_name =~ /^mysqlbinlog/; + if ( $opt_debug ) { mtr_add_arg($args, - "--debug=$debug_d:t:A,%s/log/%s.trace", + "--loose-debug=$debug_d:t:A,%s/log/%s.trace", $path_vardir_trace, $client_name) } } @@ -2015,7 +2023,7 @@ sub read_plugin_defs($) or mtr_error("Can't read plugin defintions file $defs_file"); # Need to check if we will be running mysqld-debug - if ($opt_debug) { + if ($opt_debug_server) { $running_debug= 1 if find_mysqld($basedir) =~ /-debug$/; } @@ -2515,9 +2523,9 @@ sub check_debug_support ($) { #mtr_report(" - binaries are not debug compiled"); $debug_compiled_binaries= 0; - if ( $opt_debug ) + if ( $opt_debug_server ) { - mtr_error("Can't use --debug, binaries does not support it"); + mtr_error("Can't use --debug[-server], binary does not support it"); } return; } @@ -5788,6 +5796,8 @@ Options for debugging the product debug Dump trace output for all servers and client programs debug-common Same as debug, but sets 'd' debug flags to "query,info,error,enter,exit" + debug-server Use debug version of server, but without turning on + tracing debugger=NAME Start mysqld in the selected debugger gdb Start the mysqld(s) in gdb manual-debug Let user manually start mysqld in debugger, before No bundle (reason: useless for push emails).