~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/drizzle-test-run.pl

  • Committer: brian
  • Date: 2008-07-08 21:36:40 UTC
  • Revision ID: brian@localhost.localdomain-20080708213640-qqw7s2memqeg5282
Removed mysqlshow

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
our $exe_mysqldump;
138
138
our $exe_mysqlslap;
139
139
our $exe_mysqlimport;
140
 
our $exe_mysqlshow;
141
140
our $exe_mysql_fix_system_tables;
142
141
our $exe_mysqltest;
143
142
our $exe_slave_mysqld;
1245
1244
  $exe_mysqlcheck= mtr_exe_exists("$path_client_bindir/mysqlcheck");
1246
1245
  $exe_mysqldump= mtr_exe_exists("$path_client_bindir/mysqldump");
1247
1246
  $exe_mysqlimport= mtr_exe_exists("$path_client_bindir/mysqlimport");
1248
 
  $exe_mysqlshow= mtr_exe_exists("$path_client_bindir/mysqlshow");
1249
1247
  $exe_mysqlbinlog= mtr_exe_exists("$path_client_bindir/mysqlbinlog");
1250
1248
  $exe_mysqladmin= mtr_exe_exists("$path_client_bindir/mysqladmin");
1251
1249
  $exe_mysql=          mtr_exe_exists("$path_client_bindir/mysql");
1499
1497
 
1500
1498
 
1501
1499
  # ----------------------------------------------------
1502
 
  # Setup env so childs can execute mysqlshow
1503
 
  # ----------------------------------------------------
1504
 
  my $cmdline_mysqlshow=
1505
 
    mtr_native_path($exe_mysqlshow) .
1506
 
    " -uroot --debug-check " .
1507
 
    "--port=$master->[0]->{'port'} ";
1508
 
 
1509
 
  if ( $opt_debug )
1510
 
  {
1511
 
    $cmdline_mysqlshow .=
1512
 
      " --debug=d:t:A,$path_vardir_trace/log/mysqlshow.trace";
1513
 
  }
1514
 
  $ENV{'MYSQL_SHOW'}= $cmdline_mysqlshow;
1515
 
 
1516
 
  # ----------------------------------------------------
1517
1500
  # Setup env so childs can execute mysqlbinlog
1518
1501
  # ----------------------------------------------------
1519
1502
  my $cmdline_mysqlbinlog=