summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-11-29 17:03:21 +0100
committerSergei Golubchik <serg@mariadb.org>2021-12-06 18:50:19 +0100
commit214cad8c3b56810574020a5e995d22b804294cf8 (patch)
tree750a100945f6d0e36c87e4658ddf14267428e958
parent17802165a621e5c739e70d3eb427bd1cbaeaba8a (diff)
downloadmariadb-git-214cad8c3b56810574020a5e995d22b804294cf8.tar.gz
fix ./mtr --manual warning after f5441ef4dac9
-rwxr-xr-xmysql-test/mysql-test-run.pl2
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);
}