Commit 1e191814 authored by unknown's avatar unknown

Make printout of $name nicer

Remove debug printouts


mysql-test/lib/mtr_report.pm:
  Make printout of $name nicer
mysql-test/mysql-test-run.pl:
  Remove debug printouts
parent e70c2910
......@@ -52,6 +52,9 @@ sub report_option {
#print $name, " setting $opt to ", (defined $value? $value : "undef") ,"\n";
}
sub _name {
return $name ? $name." " : undef;
}
sub _mtr_report_test_name ($) {
my $tinfo= shift;
......@@ -63,7 +66,7 @@ sub _mtr_report_test_name ($) {
$tname.= " '$tinfo->{combination}'"
if defined $tinfo->{combination};
print $name, _timestamp();
print _name(), _timestamp();
printf "%-40s ", $tname;
}
......@@ -388,7 +391,7 @@ sub _timestamp {
# Always print message to screen
sub mtr_print (@) {
print $name, join(" ", @_), "\n";
print _name(), join(" ", @_), "\n";
}
......@@ -396,21 +399,21 @@ sub mtr_print (@) {
sub mtr_report (@) {
if (defined $verbose)
{
print $name, join(" ", @_), "\n";
print _name(), join(" ", @_), "\n";
}
}
# Print warning to screen
sub mtr_warning (@) {
print STDERR $name, _timestamp(),
print STDERR _name(), _timestamp(),
"mysql-test-run: WARNING: ", join(" ", @_), "\n";
}
# Print error to screen and then exit
sub mtr_error (@) {
print STDERR $name, _timestamp(),
print STDERR _name(), _timestamp(),
"mysql-test-run: *** ERROR: ", join(" ", @_), "\n";
exit(1);
}
......@@ -419,7 +422,7 @@ sub mtr_error (@) {
sub mtr_debug (@) {
if ( $verbose > 2 )
{
print STDERR $name,
print STDERR _name(),
_timestamp(), "####: ", join(" ", @_), "\n";
}
}
......@@ -428,7 +431,7 @@ sub mtr_debug (@) {
sub mtr_verbose (@) {
if ( $verbose )
{
print STDERR $name, _timestamp(),
print STDERR _name(), _timestamp(),
"> ",join(" ", @_),"\n";
}
}
......@@ -439,7 +442,7 @@ sub mtr_verbose_restart (@) {
my $proc= $server->{proc};
if ( $verbose_restart )
{
print STDERR $name,_timestamp(),
print STDERR _name(),_timestamp(),
"> Restart $proc - ",join(" ", @args),"\n";
}
}
......
......@@ -220,7 +220,6 @@ sub main {
if ( not defined $opt_parallel ) {
# Try to find a suitable value for number of workers
my $sys_info= My::SysInfo->new();
$sys_info->print_info();
$opt_parallel= $sys_info->num_cpus();
for my $limit (2000, 1500, 1000, 500){
......@@ -2828,15 +2827,15 @@ sub run_testcase ($) {
# ----------------------------------------------------------------------
if ( $opt_start or $opt_start_dirty )
{
mtr_report("\nStarted", started(all_servers()));
mtr_report("Waiting for server(s) to exit...");
mtr_print("\nStarted", started(all_servers()));
mtr_print("Waiting for server(s) to exit...");
my $proc= My::SafeProcess->wait_any();
if ( grep($proc eq $_, started(all_servers())) )
{
mtr_report("Server $proc died");
mtr_print("Server $proc died");
exit(1);
}
mtr_report("Unknown process $proc died");
mtr_print("Unknown process $proc died");
exit(1);
}
......@@ -3163,7 +3162,7 @@ sub check_expected_crash_and_restart {
# Remove all files and subdirectories of a directory
sub clean_dir {
my ($dir)= @_;
mtr_print("clean_dir: $dir");
mtr_verbose("clean_dir: $dir");
finddepth(
{ no_chdir => 1,
wanted => sub {
......@@ -3173,12 +3172,12 @@ sub clean_dir {
# The dir to clean
return;
} else {
mtr_print("rmdir: '$_'");
mtr_verbose("rmdir: '$_'");
rmdir($_) or mtr_warning("rmdir($_) failed: $!");
}
} else {
# Hopefully a file
mtr_print("unlink: '$_'");
mtr_verbose("unlink: '$_'");
unlink($_) or mtr_warning("unlink($_) failed: $!");
}
}
......@@ -3198,7 +3197,7 @@ sub clean_datadir {
foreach my $cluster ( clusters() )
{
my $cluster_dir= "$opt_vardir/".$cluster->{name};
mtr_print(" - removing '$cluster_dir'");
mtr_verbose(" - removing '$cluster_dir'");
rmtree($cluster_dir);
}
......@@ -3207,7 +3206,7 @@ sub clean_datadir {
{
my $mysqld_dir= dirname($mysqld->value('datadir'));
if (-d $mysqld_dir ) {
mtr_print(" - removing '$mysqld_dir'");
mtr_verbose(" - removing '$mysqld_dir'");
rmtree($mysqld_dir);
}
}
......@@ -3512,7 +3511,7 @@ sub mysqld_start ($$) {
sub stop_all_servers () {
mtr_print("Stopping all servers...");
mtr_verbose("Stopping all servers...");
# Kill all started servers
My::SafeProcess::shutdown(0, # shutdown timeout 0 => kill
......
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