diff options
author | Sergei Golubchik <serg@mariadb.org> | 2021-11-29 17:03:21 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-12-06 18:50:19 +0100 |
commit | 214cad8c3b56810574020a5e995d22b804294cf8 (patch) | |
tree | 750a100945f6d0e36c87e4658ddf14267428e958 | |
parent | 17802165a621e5c739e70d3eb427bd1cbaeaba8a (diff) | |
download | mariadb-git-214cad8c3b56810574020a5e995d22b804294cf8.tar.gz |
fix ./mtr --manual warning after f5441ef4dac9
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 809f8794e00..4e00a76422b 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -5128,7 +5128,7 @@ sub mysqld_start ($$) { $mysqld->{'started_opts'}= $extra_opts; my $expect_file= "$opt_vardir/tmp/".$mysqld->name().".expect"; - return $oldexe eq $exe || + return $oldexe eq ($exe || '') || sleep_until_file_created($mysqld->value('pid-file'), $expect_file, $opt_start_timeout, $mysqld->{'proc'}, $warn_seconds); } |