From 47d6296bc74852af8e51168d93591e5c5a8a9d15 Mon Sep 17 00:00:00 2001 From: "joerg@trift2." <> Date: Mon, 21 Aug 2006 16:19:29 +0200 Subject: [PATCH] mysql-test/mysql-test-run.pl : Use fixed path names for all NDB binaries, because searching for them makes the script abort with all non-NDB builds. --- mysql-test/mysql-test-run.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index bcd03a2f0ff..7d5a3af46a6 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1299,10 +1299,8 @@ sub executable_setup () { $path_ndb_tools_dir= "$glob_basedir/bin"; $exe_ndb_mgm= "$glob_basedir/bin/ndb_mgm"; $exe_ndb_waiter= "$glob_basedir/bin/ndb_waiter"; - $exe_ndbd= mtr_exe_exists("$glob_basedir/libexec/ndbd", - "$glob_basedir/bin/ndbd"); - $exe_ndb_mgmd= mtr_exe_exists("$glob_basedir/libexec/ndb_mgmd", - "$glob_basedir/bin/ndb_mgmd"); + $exe_ndbd= "$glob_basedir/bin/ndbd"; + $exe_ndb_mgmd= "$glob_basedir/bin/ndb_mgmd"; } $exe_master_mysqld= $exe_master_mysqld || $exe_mysqld;