mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#56895 part 2 of 2: Backport of revid holyfoot@mysql.com-20100825135522-8wrjjmvh2u2t0qo6 from mysql-5.5.
Without this patch mysqlhotcopy tests would fail due to not finding the mysqlhotcopy tool in release-like builds. With this patch the tests would either pass, or fail due to missing Perl modules (see 56817). Text conflict in mysql-test/mysql-test-run.pl: - resolved by using logic from 5.5 to find mysqlhotcopy, the intention of this backport. Changed bindir to basedir.
This commit is contained in:
@ -2142,9 +2142,8 @@ sub environment_setup {
|
|||||||
# mysqlhotcopy
|
# mysqlhotcopy
|
||||||
# ----------------------------------------------------
|
# ----------------------------------------------------
|
||||||
my $mysqlhotcopy=
|
my $mysqlhotcopy=
|
||||||
mtr_pl_maybe_exists("$basedir/scripts/mysqlhotcopy");
|
mtr_pl_maybe_exists("$basedir/scripts/mysqlhotcopy") ||
|
||||||
# Since mysqltest interprets the real path as "false" in an if,
|
mtr_pl_maybe_exists("$path_client_bindir/mysqlhotcopy");
|
||||||
# use 1 ("true") to indicate "not exists" so it can be tested for
|
|
||||||
if ($mysqlhotcopy)
|
if ($mysqlhotcopy)
|
||||||
{
|
{
|
||||||
$ENV{'MYSQLHOTCOPY'}= $mysqlhotcopy;
|
$ENV{'MYSQLHOTCOPY'}= $mysqlhotcopy;
|
||||||
|
Reference in New Issue
Block a user