~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

merged from mtaylors codestyle branch that also did removepassword

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#
5
5
##############################################################################
6
6
#
7
 
#  mysql-test-run.pl
 
7
#  drizzle-test-run.pl
8
8
#
9
9
#  Tool used for executing a suite of .test file
10
10
#
49
49
# A nice way to trace the execution of this script while debugging
50
50
# is to use the Devel::Trace package found at
51
51
# "http://www.plover.com/~mjd/perl/Trace/" and run this script like
52
 
# "perl -d:Trace mysql-test-run.pl"
 
52
# "perl -d:Trace drizzle-test-run.pl"
53
53
#
54
54
 
55
55
 
591
591
  }
592
592
 
593
593
  # We require that we are in the "mysql-test" directory
594
 
  # to run mysql-test-run
 
594
  # to run drizzle-test-run
595
595
  if (! -f $glob_scriptname)
596
596
  {
597
 
    mtr_error("Can't find the location for the mysql-test-run script\n" .
 
597
    mtr_error("Can't find the location for the drizzle-test-run script\n" .
598
598
              "Go to to the mysql-test directory and execute the script " .
599
599
              "as follows:\n./$glob_scriptname");
600
600
  }
1304
1304
##############################################################################
1305
1305
#
1306
1306
#  Set environment to be used by childs of this process for
1307
 
#  things that are constant duting the whole lifetime of mysql-test-run.pl
 
1307
#  things that are constant duting the whole lifetime of drizzle-test-run.pl
1308
1308
#
1309
1309
##############################################################################
1310
1310
 
2061
2061
  }
2062
2062
  check_running_as_root();
2063
2063
 
2064
 
  mtr_log_init("$opt_vardir/log/mysql-test-run.log");
 
2064
  mtr_log_init("$opt_vardir/log/drizzle-test-run.log");
2065
2065
 
2066
2066
}
2067
2067