119
114
our $opt_vardir; # A path but set directly on cmd line
120
115
our $path_vardir_trace; # unix formatted opt_vardir for trace files
121
116
our $opt_tmpdir; # A path but set directly on cmd line
126
119
our $default_vardir;
130
our $opt_suites_default= "main"; # Default suites to run
123
our $opt_suites_default= "main,binlog,rpl"; # Default suites to run
131
124
our $opt_script_debug= 0; # Script debugging, enable with --script-debug
132
125
our $opt_verbose= 0; # Verbose output, enable with --verbose
134
our $opt_repeat_test= 1;
136
127
our $exe_master_mysqld;
137
128
our $exe_drizzle;
129
our $exe_drizzleadmin;
138
130
our $exe_drizzle_client_test;
139
131
our $exe_bug25714;
140
132
our $exe_drizzled;
133
our $exe_drizzlecheck;
141
134
our $exe_drizzledump;
142
135
our $exe_drizzleslap;
143
136
our $exe_drizzleimport;
421
# Magic number -69.4 results in traditional test ports starting from 9306.
422
set_mtr_build_thread_ports(-69.4);
430
424
# If so requested, we try to avail ourselves of a unique build thread number.
431
425
if ( $ENV{'MTR_BUILD_THREAD'} ) {
432
426
if ( lc($ENV{'MTR_BUILD_THREAD'}) eq 'auto' ) {
469
463
# Control what test suites or cases to run
470
464
'force' => \$opt_force,
465
'skip-master-binlog' => \$opt_skip_master_binlog,
466
'skip-slave-binlog' => \$opt_skip_slave_binlog,
471
467
'do-test=s' => \$opt_do_test,
472
468
'start-from=s' => \$opt_start_from,
473
469
'suite|suites=s' => \$opt_suites,
474
470
'skip-rpl' => \$opt_skip_rpl,
475
471
'skip-test=s' => \$opt_skip_test,
472
'big-test' => \$opt_big_test,
476
473
'combination=s' => \@opt_combinations,
477
474
'skip-combination' => \$opt_skip_combination,
489
486
# Extra options used when starting mysqld
490
487
'mysqld=s' => \@opt_extra_mysqld_opt,
491
'engine=s' => \$opt_engine,
493
489
# Run test on running server
494
490
'extern' => \$opt_extern,
497
'subunit' => \$opt_subunit,
500
493
'gdb' => \$opt_gdb,
502
494
'client-gdb' => \$opt_client_gdb,
503
'client-dbx' => \$opt_client_dbx,
504
495
'manual-gdb' => \$opt_manual_gdb,
505
'manual-dbx' => \$opt_manual_dbx,
506
496
'manual-debug' => \$opt_manual_debug,
507
497
'ddd' => \$opt_ddd,
508
498
'client-ddd' => \$opt_client_ddd,
550
540
'tmpdir=s' => \$opt_tmpdir,
551
541
'vardir=s' => \$opt_vardir,
552
'testdir=s' => \$opt_testdir,
553
542
'benchdir=s' => \$glob_mysql_bench_dir,
554
543
'mem' => \$opt_mem,
571
560
'testcase-timeout=i' => \$opt_testcase_timeout,
572
561
'suite-timeout=i' => \$opt_suite_timeout,
573
562
'warnings|log-warnings' => \$opt_warnings,
574
'repeat-test=i' => \$opt_repeat_test,
576
564
# Options which are no longer used
577
565
(map { $_ => \&warn_about_removed_option } @removed_options),
582
570
usage("") if $opt_usage;
584
usage("you cannot specify --gdb and --dbx both!") if
585
($opt_gdb && $opt_dbx) ||
586
($opt_manual_gdb && $opt_manual_dbx);
588
572
$glob_scriptname= basename($0);
590
574
if ($opt_mtr_build_thread != 0)
596
580
$opt_mtr_build_thread= $ENV{'MTR_BUILD_THREAD'};
583
# We require that we are in the "mysql-test" directory
584
# to run drizzle-test-run
585
if (! -f $glob_scriptname)
587
mtr_error("Can't find the location for the drizzle-test-run script\n" .
588
"Go to to the mysql-test directory and execute the script " .
589
"as follows:\n./$glob_scriptname");
599
592
if ( -d "../drizzled" )
604
597
# Find the absolute path to the test directory
605
if ( ! $opt_testdir )
607
$glob_mysql_test_dir= cwd();
611
$glob_mysql_test_dir= $opt_testdir;
598
$glob_mysql_test_dir= cwd();
613
599
$default_vardir= "$glob_mysql_test_dir/var";
615
601
# In most cases, the base directory we find everything relative to,
627
613
$glob_basedir= dirname($glob_basedir);
630
if ( $opt_testdir and -d $opt_testdir and $opt_vardir and -d $opt_vardir
631
and -f "$opt_vardir/../../drizzled/drizzled")
633
# probably in a VPATH build
634
$glob_builddir= "$opt_vardir/../..";
641
616
# Expect mysql-bench to be located adjacent to the source tree, by default
642
617
$glob_mysql_bench_dir= "$glob_basedir/../mysql-bench"
643
618
unless defined $glob_mysql_bench_dir;
665
639
"$path_client_bindir/drizzled",
666
640
"$glob_basedir/libexec/drizzled",
667
641
"$glob_basedir/bin/drizzled",
668
"$glob_basedir/sbin/drizzled",
669
"$glob_builddir/drizzled/drizzled");
642
"$glob_basedir/sbin/drizzled");
671
644
# Use the mysqld found above to find out what features are available
672
645
collect_mysqld_features();
714
682
# --------------------------------------------------------------------------
683
# Find out type of logging that are being used
684
# --------------------------------------------------------------------------
685
if (!$opt_extern && $mysql_version_id >= 50100 )
687
foreach my $arg ( @opt_extra_mysqld_opt )
689
if ( $arg =~ /binlog[-_]format=(\S+)/ )
691
$used_binlog_format= $1;
694
if (defined $used_binlog_format)
696
mtr_report("Using binlog format '$used_binlog_format'");
700
mtr_report("Using dynamic switching of binlog format");
705
# --------------------------------------------------------------------------
715
706
# Find out default storage engine being used(if any)
716
707
# --------------------------------------------------------------------------
717
708
foreach my $arg ( @opt_extra_mysqld_opt )
759
750
$opt_vardir= $default_vardir;
752
elsif ( $mysql_version_id < 50000 and
753
$opt_vardir ne $default_vardir)
755
# Version 4.1 and --vardir was specified
756
# Only supported as a symlink from var/
757
# by setting up $opt_mem that symlink will be created
759
# Only platforms that have native symlinks can use the vardir trick
760
$opt_mem= $opt_vardir;
761
mtr_report("Using 4.1 vardir trick");
764
$opt_vardir= $default_vardir;
762
767
$path_vardir_trace= $opt_vardir;
763
768
# Chop off any "c:", DBUG likes a unix path ex: c:/src/... => /src/...
764
769
$path_vardir_trace=~ s/^\w://;
766
$opt_vardir= collapse_path($opt_vardir);
771
# We make the path absolute, as the server will do a chdir() before usage
772
unless ( $opt_vardir =~ m,^/,)
774
# Make absolute path, relative test dir
775
$opt_vardir= "$glob_mysql_test_dir/$opt_vardir";
768
778
# --------------------------------------------------------------------------
795
805
# --------------------------------------------------------------------------
807
# --------------------------------------------------------------------------
813
# --------------------------------------------------------------------------
797
815
# --------------------------------------------------------------------------
798
816
if ( $opt_gcov and ! $source_dist )
805
823
# --------------------------------------------------------------------------
806
824
if ( $opt_gdb || $opt_client_gdb || $opt_ddd || $opt_client_ddd ||
807
825
$opt_manual_gdb || $opt_manual_ddd || $opt_manual_debug ||
808
$opt_debugger || $opt_client_debugger || $opt_gdb || $opt_manual_gdb)
826
$opt_debugger || $opt_client_debugger )
810
828
# Indicate that we are using debugger
811
829
$glob_debugger= 1;
1040
1058
print "got ".$mtr_build_thread."\n";
1043
$mtr_build_thread= (($mtr_build_thread * 10) % 2000) - 1000;
1045
1061
# Up to two masters, up to three slaves
1046
1062
# A magic value in command_line_setup depends on these equations.
1047
$opt_master_myport= $mtr_build_thread + 9000; # and 1
1063
$opt_master_myport= $mtr_build_thread * 10 + 10000; # and 1
1048
1064
$opt_slave_myport= $opt_master_myport + 2; # and 3 4
1050
1066
if ( $opt_master_myport < 5001 or $opt_master_myport + 10 >= 32767 )
1160
1176
mtr_init_args(\$args);
1162
1178
mtr_add_arg($args, "--no-defaults");
1163
mtr_add_arg($args, "--skip-stack-trace");
1164
1179
mtr_add_arg($args, "--user=%s", $opt_user);
1165
1180
mtr_add_arg($args, "--port=%d", $mysqld->{'port'});
1166
1181
mtr_add_arg($args, "--silent"); # Tab separated output
1208
1223
$exe_my_print_defaults=
1209
1224
mtr_exe_exists(
1210
1225
"$path_client_bindir/my_print_defaults",
1211
"$glob_basedir/extra/my_print_defaults",
1212
"$glob_builddir/extra/my_print_defaults");
1226
"$glob_basedir/extra/my_print_defaults");
1214
1228
# Look for perror
1215
1229
$exe_perror= "perror";
1217
1231
# Look for the client binaries
1232
$exe_drizzlecheck= mtr_exe_exists("$path_client_bindir/drizzlecheck");
1218
1233
$exe_drizzledump= mtr_exe_exists("$path_client_bindir/drizzledump");
1219
1234
$exe_drizzleimport= mtr_exe_exists("$path_client_bindir/drizzleimport");
1235
$exe_drizzleadmin= mtr_exe_exists("$path_client_bindir/drizzleadmin");
1220
1236
$exe_drizzle= mtr_exe_exists("$path_client_bindir/drizzle");
1222
1238
if (!$opt_extern)
1312
1328
# --------------------------------------------------------------------------
1313
1329
if ( $source_dist )
1315
push(@ld_library_paths, "$glob_basedir/libdrizzleclient/.libs/",
1316
"$glob_basedir/mysys/.libs/",
1317
"$glob_basedir/mystrings/.libs/",
1318
"$glob_basedir/drizzled/.libs/",
1331
push(@ld_library_paths, "$glob_basedir/libmysql/.libs/",
1332
"$glob_basedir/libmysql_r/.libs/",
1333
"$glob_basedir/zlib.libs/");
1343
1357
push(@ld_library_paths, $debug_libraries_path);
1346
$ENV{'LD_LIBRARY_PATH'}= join(":",
1360
$ENV{'LD_LIBRARY_PATH'}= join(":", @ld_library_paths,
1347
1361
$ENV{'LD_LIBRARY_PATH'} ?
1348
split(':', $ENV{'LD_LIBRARY_PATH'}) : (),
1362
split(':', $ENV{'LD_LIBRARY_PATH'}) : ());
1350
1363
mtr_debug("LD_LIBRARY_PATH: $ENV{'LD_LIBRARY_PATH'}");
1352
1365
$ENV{'DYLD_LIBRARY_PATH'}= join(":", @ld_library_paths,
1388
1401
$ENV{'LC_COLLATE'}= "C";
1389
1402
$ENV{'USE_RUNNING_SERVER'}= $opt_extern;
1390
$ENV{'DRIZZLE_TEST_DIR'}= collapse_path($glob_mysql_test_dir);
1403
$ENV{'DRIZZLE_TEST_DIR'}= $glob_mysql_test_dir;
1391
1404
$ENV{'MYSQLTEST_VARDIR'}= $opt_vardir;
1392
1405
$ENV{'DRIZZLE_TMP_DIR'}= $opt_tmpdir;
1393
1406
$ENV{'MASTER_MYSOCK'}= $master->[0]->{'path_sock'};
1400
1413
$ENV{'SLAVE_MYPORT2'}= $slave->[2]->{'port'};
1401
1414
$ENV{'DRIZZLE_TCP_PORT'}= $mysqld_variables{'port'};
1403
$ENV{'MTR_BUILD_THREAD'}= $opt_mtr_build_thread;
1416
$ENV{MTR_BUILD_THREAD}= $opt_mtr_build_thread;
1405
1418
$ENV{'EXE_MYSQL'}= $exe_drizzle;
1420
# ----------------------------------------------------
1421
# Setup env so childs can execute mysqlcheck
1422
# ----------------------------------------------------
1423
my $cmdline_mysqlcheck=
1424
mtr_native_path($exe_drizzlecheck) .
1425
" --no-defaults --debug-check -uroot " .
1426
"--port=$master->[0]->{'port'} ";
1430
$cmdline_mysqlcheck .=
1431
" --debug=d:t:A,$path_vardir_trace/log/mysqlcheck.trace";
1433
$ENV{'DRIZZLE_CHECK'}= $cmdline_mysqlcheck;
1408
1435
# ----------------------------------------------------
1409
1436
# Setup env to childs can execute myqldump
1499
1526
$ENV{'DRIZZLE_MY_PRINT_DEFAULTS'}= mtr_native_path($exe_my_print_defaults);
1501
1528
# ----------------------------------------------------
1502
# Setup env so childs can shutdown the server
1529
# Setup env so childs can execute mysqladmin
1503
1530
# ----------------------------------------------------
1504
$ENV{'DRIZZLED_SHUTDOWN'}= mtr_native_path($exe_drizzle);
1531
$ENV{'MYSQLADMIN'}= mtr_native_path($exe_drizzleadmin);
1506
1533
# ----------------------------------------------------
1507
1534
# Setup env so childs can execute perror
1734
1761
# Make a link std_data_ln in var/ that points to std_data
1735
symlink(collapse_path("$glob_mysql_test_dir/std_data"),
1736
"$opt_vardir/std_data_ln");
1762
symlink("$glob_mysql_test_dir/std_data", "$opt_vardir/std_data_ln");
1738
1764
# Remove old log files
1739
1765
foreach my $name (glob("r/*.progress r/*.log r/*.warnings"))
1743
system("chmod -R ugo+r $opt_vardir");
1744
system("chmod -R ugo+r $opt_vardir/std_data_ln/*");
1833
1857
if ( ! $benchmark )
1859
mtr_add_arg($args, "--log");
1835
1860
mtr_run("$glob_mysql_bench_dir/run-all-tests", $args, "", "", "", "");
1836
1861
# FIXME check result code?!
1873
1898
foreach my $tinfo ( @$tests )
1875
foreach(1..$opt_repeat_test)
1900
if (run_testcase_check_skip_test($tinfo))
1877
if (run_testcase_check_skip_test($tinfo))
1882
mtr_timer_start($glob_timers,"testcase", 60 * $opt_testcase_timeout);
1883
run_testcase($tinfo);
1884
mtr_timer_stop($glob_timers,"testcase");
1905
mtr_timer_start($glob_timers,"testcase", 60 * $opt_testcase_timeout);
1906
run_testcase($tinfo);
1907
mtr_timer_stop($glob_timers,"testcase");
1888
1910
mtr_print_line();
2040
2062
unlink("$base_file.log");
2041
2063
unlink("$base_file.warnings");
2067
if (defined $tinfo->{binlog_format} and $mysql_version_id > 50100 )
2069
# Dynamically switch binlog format of
2070
# master, slave is always restarted
2071
foreach my $server ( @$master )
2073
next unless ($server->{'pid'});
2075
mtr_init_args(\$args);
2076
mtr_add_arg($args, "--no-defaults");
2077
mtr_add_arg($args, "--user=root");
2078
mtr_add_arg($args, "--port=$server->{'port'}");
2080
my $sql= "include/set_binlog_format_".$tinfo->{binlog_format}.".sql";
2081
mtr_verbose("Setting binlog format:", $tinfo->{binlog_format});
2082
if (mtr_run($exe_drizzle, $args, $sql, "", "", "") != 0)
2084
mtr_error("Failed to switch binlog format");
2045
2091
sub do_after_run_drizzletest($)
2413
2459
mtr_add_arg($args, "%s--no-defaults", $prefix);
2415
$path_my_basedir= collapse_path($path_my_basedir);
2416
2461
mtr_add_arg($args, "%s--basedir=%s", $prefix, $path_my_basedir);
2420
mtr_add_arg($args, "%s--default-storage-engine=%s", $prefix, $opt_engine);
2423
2463
if ( $mysql_version_id >= 50036)
2425
2465
# By default, prevent the started mysqld to access files outside of vardir
2431
2471
# Increase default connect_timeout to avoid intermittent
2432
2472
# disconnects when test servers are put under load
2433
2473
# see BUG#28359
2434
mtr_add_arg($args, "%s--oldlibdrizzle-connect-timeout=60", $prefix);
2474
mtr_add_arg($args, "%s--connect-timeout=60", $prefix);
2437
2477
# When mysqld is run by a root user(euid is 0), it will fail
2450
2490
mtr_add_arg($args, "%s--datadir=%s", $prefix,
2451
2491
$mysqld->{'path_myddir'});
2493
my $log_base_path= "$opt_vardir/log/$mysqld->{'type'}$sidx";
2494
mtr_add_arg($args, "%s--log=%s.log", $prefix, $log_base_path);
2453
2496
# Check if "extra_opt" contains --skip-log-bin
2497
my $skip_binlog= grep(/^--skip-log-bin/, @$extra_opt, @opt_extra_mysqld_opt);
2454
2498
if ( $mysqld->{'type'} eq 'master' )
2500
if (! ($opt_skip_master_binlog || $skip_binlog) )
2502
mtr_add_arg($args, "%s--log-bin=%s/log/master-bin%s", $prefix,
2503
$opt_vardir, $sidx);
2456
2506
mtr_add_arg($args, "%s--server-id=%d", $prefix,
2457
2507
$idx > 0 ? $idx + 101 : 1);
2459
2509
mtr_add_arg($args, "%s--loose-innodb_data_file_path=ibdata1:10M:autoextend",
2462
mtr_add_arg($args, "%s--loose-innodb-lock-wait-timeout=5", $prefix);
2512
mtr_add_arg($args, "%s--local-infile", $prefix);
2464
2514
if ( $idx > 0 or !$use_innodb)
2471
2521
mtr_error("unknown mysqld type")
2472
2522
unless $mysqld->{'type'} eq 'slave';
2524
#mtr_add_arg($args, "%s--init-rpl-role=slave", $prefix);
2525
if (! ( $opt_skip_slave_binlog || $skip_binlog ))
2527
mtr_add_arg($args, "%s--log-bin=%s/log/slave%s-bin", $prefix,
2528
$opt_vardir, $sidx); # FIXME use own dir for binlogs
2529
mtr_add_arg($args, "%s--log-slave-updates", $prefix);
2532
mtr_add_arg($args, "%s--master-retry-count=10", $prefix);
2534
mtr_add_arg($args, "%s--relay-log=%s/log/slave%s-relay-bin", $prefix,
2535
$opt_vardir, $sidx);
2536
mtr_add_arg($args, "%s--report-host=127.0.0.1", $prefix);
2537
mtr_add_arg($args, "%s--report-port=%d", $prefix,
2539
# mtr_add_arg($args, "%s--report-user=root", $prefix);
2540
mtr_add_arg($args, "%s--loose-skip-innodb", $prefix);
2541
mtr_add_arg($args, "%s--skip-slave-start", $prefix);
2474
2543
# Directory where slaves find the dumps generated by "load data"
2475
2544
# on the server. The path need to have constant length otherwise
2476
2545
# test results will vary, thus a relative path is used.
2477
2546
my $slave_load_path= "../tmp";
2547
mtr_add_arg($args, "%s--slave-load-tmpdir=%s", $prefix,
2549
mtr_add_arg($args, "%s--set-variable=slave_net_timeout=120", $prefix);
2479
2551
if ( @$slave_master_info )
2488
2560
my $slave_server_id= 2 + $idx;
2489
2561
my $slave_rpl_rank= $slave_server_id;
2490
2562
mtr_add_arg($args, "%s--server-id=%d", $prefix, $slave_server_id);
2563
# mtr_add_arg($args, "%s--rpl-recovery-rank=%d", $prefix, $slave_rpl_rank);
2521
2594
$found_skip_core= 1;
2596
elsif ($skip_binlog and mtr_match_prefix($arg, "--binlog-format"))
2598
; # Dont add --binlog-format when running without binlog
2525
2602
mtr_add_arg($args, "%s%s", $prefix, $arg);
2530
2607
mtr_add_arg($args, "%s%s", $prefix, "--core-file");
2612
#mtr_add_arg($args, "%s--rpl-recovery-rank=1", $prefix);
2613
#mtr_add_arg($args, "%s--init-rpl-role=master", $prefix);
2615
elsif ( $mysqld->{'type'} eq 'master' )
2617
mtr_add_arg($args, "%s--open-files-limit=1024", $prefix);
2584
2671
ddd_arguments(\$args, \$exe, "$type"."_$idx");
2586
if ( $opt_dbx || $opt_manual_dbx)
2588
dbx_arguments(\$args, \$exe, "$type"."_$idx");
2590
2673
elsif ( $opt_debugger )
2592
2675
debugger_arguments(\$args, \$exe, "$type"."_$idx");
2814
2897
if ( $mysqld->{'pid'} )
2816
$pid= mtr_server_shutdown($mysqld);
2818
$admin_pids{$pid}= 1;
2821
pid => $mysqld->{'pid'},
2822
real_pid => $mysqld->{'real_pid'},
2823
pidfile => $mysqld->{'path_pid'},
2824
sockfile => $mysqld->{'path_sock'},
2825
port => $mysqld->{'port'},
2826
errfile => $mysqld->{'path_myerr'},
2829
$mysqld->{'pid'}= 0; # Assume we are done with it
2899
$pid= mtr_mysqladmin_start($mysqld, "shutdown", 20);
2901
$admin_pids{$pid}= 1;
2904
pid => $mysqld->{'pid'},
2905
real_pid => $mysqld->{'real_pid'},
2906
pidfile => $mysqld->{'path_pid'},
2907
sockfile => $mysqld->{'path_sock'},
2908
port => $mysqld->{'port'},
2909
errfile => $mysqld->{'path_myerr'},
2912
$mysqld->{'pid'}= 0; # Assume we are done with it
2842
2925
if ( $mysqld->{'pid'} )
2844
$pid= mtr_server_shutdown($mysqld);
2846
$admin_pids{$pid}= 1;
2849
pid => $mysqld->{'pid'},
2850
real_pid => $mysqld->{'real_pid'},
2851
pidfile => $mysqld->{'path_pid'},
2852
sockfile => $mysqld->{'path_sock'},
2853
port => $mysqld->{'port'},
2854
errfile => $mysqld->{'path_myerr'},
2857
$mysqld->{'pid'}= 0; # Assume we are done with it
2927
$pid= mtr_mysqladmin_start($mysqld, "shutdown", 20);
2929
$admin_pids{$pid}= 1;
2932
pid => $mysqld->{'pid'},
2933
real_pid => $mysqld->{'real_pid'},
2934
pidfile => $mysqld->{'path_pid'},
2935
sockfile => $mysqld->{'path_sock'},
2936
port => $mysqld->{'port'},
2937
errfile => $mysqld->{'path_myerr'},
2941
$mysqld->{'pid'}= 0; # Assume we are done with it
2978
3062
mtr_add_arg($args, "--record");
2983
mtr_add_arg($args, "--testdir=%s", $opt_testdir);
2986
3065
my $res = mtr_run_test($exe_drizzletest,$args,
2987
3066
"include/check-testcase.test", "", "", "");
3089
3168
$path_vardir_trace);
3094
mtr_add_arg($args, "--testdir=%s", $opt_testdir);
3098
3171
# ----------------------------------------------------------------------
3099
3172
# export DRIZZLE_TEST variable containing <path>/drizzletest <args>
3100
3173
# ----------------------------------------------------------------------
3179
# Modify the exe and args so that program is run in gdb in xterm
3186
# Write $args to gdb init file
3187
my $str= join(" ", @$$args);
3188
my $dbx_init_file= "$opt_tmpdir/dbxinit.$type";
3190
# Remove the old gdbinit file
3191
unlink($dbx_init_file);
3192
if ( $type eq "client" )
3194
# write init file for client
3195
mtr_tofile($dbx_init_file,
3201
# write init file for drizzled
3202
mtr_tofile($dbx_init_file,
3203
"stop in mysql_parse\n" .
3209
if ( $opt_manual_dbx )
3211
print "\nTo start dbx for $type, type in another window:\n";
3212
print "dbx -c 'source $dbx_init_file' $$exe\n";
3214
# Indicate the exe should not be started
3220
mtr_add_arg($$args, "-title");
3221
mtr_add_arg($$args, "$type");
3222
mtr_add_arg($$args, "-e");
3224
mtr_add_arg($$args, "dbx");
3225
mtr_add_arg($$args, "-c");
3226
mtr_add_arg($$args, "source $dbx_init_file");
3227
mtr_add_arg($$args, "$$exe");
3233
3253
# Modify the exe and args so that program is run in gdb in xterm
3374
3394
$$exe= $debugger;
3377
#elsif ( $debugger eq "dbx" )
3379
# # xterm -e dbx -r exe arg1 .. argn
3381
# unshift(@$$args, $$exe);
3382
# unshift(@$$args, "-r");
3383
# unshift(@$$args, $debugger);
3384
# unshift(@$$args, "-e");
3397
elsif ( $debugger eq "dbx" )
3399
# xterm -e dbx -r exe arg1 .. argn
3401
unshift(@$$args, $$exe);
3402
unshift(@$$args, "-r");
3403
unshift(@$$args, $debugger);
3404
unshift(@$$args, "-e");
3391
3411
mtr_error("Unknown argument \"$debugger\" passed to --debugger");
3410
3430
mtr_add_arg($args, "--tool=memcheck"); # From >= 2.1.2 needs this option
3431
mtr_add_arg($args, "--alignment=8");
3411
3432
mtr_add_arg($args, "--leak-check=yes");
3412
3433
mtr_add_arg($args, "--num-callers=16");
3413
3434
mtr_add_arg($args, "--suppressions=%s/valgrind.supp", $glob_mysql_test_dir)
3452
sub collapse_path ($) {
3454
my $c_path= rel2abs(shift);
3455
my $updir = updir($c_path);
3456
my $curdir = curdir($c_path);
3458
my($vol, $dirs, $file) = splitpath($c_path);
3459
my @dirs = splitdir($dirs);
3462
foreach my $dir (@dirs) {
3463
if( $dir eq $updir and # if we have an updir
3464
@collapsed and # and something to collapse
3465
length $collapsed[-1] and # and its not the rootdir
3466
$collapsed[-1] ne $updir and # nor another updir
3467
$collapsed[-1] ne $curdir # nor the curdir
3470
pop @collapsed; # collapse
3473
push @collapsed, $dir; # just hang onto it
3477
return catpath($vol, catdir(@collapsed), $file);
3480
3474
##############################################################################
3530
3524
list of suite names.
3531
3525
The default is: "$opt_suites_default"
3532
3526
skip-rpl Skip the replication test cases.
3527
big-test Set the environment variable BIG_TEST, which can be
3528
checked from test cases.
3533
3529
combination="ARG1 .. ARG2" Specify a set of "mysqld" arguments for one
3535
3531
skip-combination Skip any combination options and combinations files
3536
repeat-test=n How many times to repeat each test (default: 1)
3538
3533
Options that specify ports