diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-10-08 11:23:04 +0200 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-10-08 11:23:04 +0200 |
commit | 57d40c6ba4e792e15ecca39d7eda21e834fb468f (patch) | |
tree | 27196c2461a122096f5d7e98f6031a46b6253151 | |
parent | 00709918e4272862ae9adc62d9492f44b06e9d4a (diff) | |
download | mariadb-git-57d40c6ba4e792e15ecca39d7eda21e834fb468f.tar.gz |
Bug #47716 mtr2 prints obscure error when started with -gdb and xterm is missing
Tried to use an expression inside ""
Go via variable, and add $exe to the output
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 46a6d5af4bc..3f705019ea8 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -4286,7 +4286,8 @@ sub mysqld_start ($$) { $opt_start_timeout, $mysqld->{'proc'})) { - mtr_error("Failed to start mysqld $mysqld->name()"); + my $mname= $mysqld->name(); + mtr_error("Failed to start mysqld $mname with command $exe"); } # Remember options used when starting |