Commit 08d1f061 authored by unknown's avatar unknown

BUG #11746897 - 29508: PLEASE IMPLEMENT MYSQL-TEST-RUN.PL --STRACE-MASTER

Includes fix for strace-client and restricted to strace and linux only.
******
parent 5dda66cf
...@@ -280,6 +280,7 @@ my $opt_reorder= 1; ...@@ -280,6 +280,7 @@ my $opt_reorder= 1;
my $opt_force_restart= 0; my $opt_force_restart= 0;
my $opt_strace_client; my $opt_strace_client;
my $opt_strace_server;
our $opt_user = "root"; our $opt_user = "root";
...@@ -1117,7 +1118,8 @@ sub command_line_setup { ...@@ -1117,7 +1118,8 @@ sub command_line_setup {
'debugger=s' => \$opt_debugger, 'debugger=s' => \$opt_debugger,
'boot-dbx' => \$opt_boot_dbx, 'boot-dbx' => \$opt_boot_dbx,
'client-debugger=s' => \$opt_client_debugger, 'client-debugger=s' => \$opt_client_debugger,
'strace-client:s' => \$opt_strace_client, 'strace-server' => \$opt_strace_server,
'strace-client' => \$opt_strace_client,
'max-save-core=i' => \$opt_max_save_core, 'max-save-core=i' => \$opt_max_save_core,
'max-save-datadir=i' => \$opt_max_save_datadir, 'max-save-datadir=i' => \$opt_max_save_datadir,
'max-test-fail=i' => \$opt_max_test_fail, 'max-test-fail=i' => \$opt_max_test_fail,
...@@ -1721,6 +1723,19 @@ sub command_line_setup { ...@@ -1721,6 +1723,19 @@ sub command_line_setup {
$debug_d= "d,query,info,error,enter,exit"; $debug_d= "d,query,info,error,enter,exit";
} }
if ( $opt_strace_server && ($^O ne "linux") )
{
$opt_strace_server=0;
mtr_warning("Strace only supported in Linux ");
}
if ( $opt_strace_client && ($^O ne "linux") )
{
$opt_strace_client=0;
mtr_warning("Strace only supported in Linux ");
}
mtr_report("Checking supported features..."); mtr_report("Checking supported features...");
check_ndbcluster_support(\%mysqld_variables); check_ndbcluster_support(\%mysqld_variables);
...@@ -4875,6 +4890,12 @@ sub mysqld_start ($$) { ...@@ -4875,6 +4890,12 @@ sub mysqld_start ($$) {
my $args; my $args;
mtr_init_args(\$args); mtr_init_args(\$args);
# implementation for strace-server
if ( $opt_strace_server )
{
strace_server_arguments($args, \$exe, $mysqld->name());
}
if ( $opt_valgrind_mysqld ) if ( $opt_valgrind_mysqld )
{ {
...@@ -5440,6 +5461,14 @@ sub start_mysqltest ($) { ...@@ -5440,6 +5461,14 @@ sub start_mysqltest ($) {
mtr_init_args(\$args); mtr_init_args(\$args);
if ( $opt_strace_client )
{
$exe= "strace";
mtr_add_arg($args, "-o");
mtr_add_arg($args, "%s/log/mysqltest.strace", $opt_vardir);
mtr_add_arg($args, "$exe_mysqltest");
}
mtr_add_arg($args, "--defaults-file=%s", $path_config_file); mtr_add_arg($args, "--defaults-file=%s", $path_config_file);
mtr_add_arg($args, "--silent"); mtr_add_arg($args, "--silent");
mtr_add_arg($args, "--tmpdir=%s", $opt_tmpdir); mtr_add_arg($args, "--tmpdir=%s", $opt_tmpdir);
...@@ -5476,13 +5505,6 @@ sub start_mysqltest ($) { ...@@ -5476,13 +5505,6 @@ sub start_mysqltest ($) {
mtr_add_arg($args, "--cursor-protocol"); mtr_add_arg($args, "--cursor-protocol");
} }
if ( $opt_strace_client )
{
$exe= $opt_strace_client || "strace";
mtr_add_arg($args, "-o");
mtr_add_arg($args, "%s/log/mysqltest.strace", $opt_vardir);
mtr_add_arg($args, "$exe_mysqltest");
}
mtr_add_arg($args, "--timer-file=%s/log/timer", $opt_vardir); mtr_add_arg($args, "--timer-file=%s/log/timer", $opt_vardir);
...@@ -5783,6 +5805,19 @@ sub debugger_arguments { ...@@ -5783,6 +5805,19 @@ sub debugger_arguments {
} }
} }
#
# Modify the exe and args so that program is run in strace
#
sub strace_server_arguments {
my $args= shift;
my $exe= shift;
my $type= shift;
mtr_add_arg($args, "-o");
mtr_add_arg($args, "%s/log/%s.strace", $opt_vardir, $type);
mtr_add_arg($args, $$exe);
$$exe= "strace";
}
# #
# Modify the exe and args so that program is run in valgrind # Modify the exe and args so that program is run in valgrind
...@@ -6099,9 +6134,8 @@ Options for debugging the product ...@@ -6099,9 +6134,8 @@ Options for debugging the product
test(s) test(s)
manual-dbx Let user manually start mysqld in dbx, before running manual-dbx Let user manually start mysqld in dbx, before running
test(s) test(s)
strace-client[=path] Create strace output for mysqltest client, optionally strace-client Create strace output for mysqltest client,
specifying name and path to the trace program to use. strace-server Create strace output for mysqltest server,
Example: $0 --strace-client=ktrace
max-save-core Limit the number of core files saved (to avoid filling max-save-core Limit the number of core files saved (to avoid filling
up disks for heavily crashing server). Defaults to up disks for heavily crashing server). Defaults to
$opt_max_save_core, set to 0 for no limit. Set $opt_max_save_core, set to 0 for no limit. Set
......
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