diff options
author | kent@mysql.com <> | 2005-09-28 23:53:31 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-09-28 23:53:31 +0200 |
commit | 7e6a78a1aea10b27d549c9b3210266c5e73a0cc9 (patch) | |
tree | 9d2ad73f63b05fb6a8645f301c59f6f31e8fd0dc | |
parent | 7d33bdeffaf9151b00179cf852041fd126126a0e (diff) | |
download | mariadb-git-7e6a78a1aea10b27d549c9b3210266c5e73a0cc9.tar.gz |
mtr_process.pl:
Append to some of the log files, not overwrite
-rw-r--r-- | mysql-test/lib/mtr_process.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_process.pl b/mysql-test/lib/mtr_process.pl index 9176a246835..177665cf578 100644 --- a/mysql-test/lib/mtr_process.pl +++ b/mysql-test/lib/mtr_process.pl @@ -680,7 +680,8 @@ sub mtr_mysqladmin_shutdown { mtr_add_arg($args, "shutdown"); # We don't wait for termination of mysqladmin my $pid= mtr_spawn($::exe_mysqladmin, $args, - "", $::path_manager_log, $::path_manager_log, ""); + "", $::path_manager_log, $::path_manager_log, "", + { append_log_file => 1 }); $mysql_admin_pids{$pid}= 1; } |