summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-10-06 13:33:12 +0200
committerunknown <msvensson@neptunus.(none)>2006-10-06 13:33:12 +0200
commit7d3887563c6a5ced3b7898474ee9804d902e8f5b (patch)
tree0836b7c9fdae6896555e7e1810ba68dd290578a9 /mysql-test/mysql-test-run.pl
parent81d423334e3f404ebfb8feca898cb082cbe1f2cb (diff)
downloadmariadb-git-7d3887563c6a5ced3b7898474ee9804d902e8f5b.tar.gz
Modify regex for parsing mysqld version as the mysqld is sometimes a libtool wrapper and
the "mysqld --version" command will print "/path/.libs/lt-mysqld Ver x.x.x" mysql-test/mysql-test-run.pl: Modify regex for parsing mysqld version as the mysqld is sometimes a libtool wrapper and the "mysqld --version" command will print "/path/.libs/lt-mysqld"
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-xmysql-test/mysql-test-run.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
index 2226c62a262..4eef16e0388 100755
--- a/mysql-test/mysql-test-run.pl
+++ b/mysql-test/mysql-test-run.pl
@@ -1177,7 +1177,9 @@ sub check_mysqld_features () {
if ( !$mysql_version_id )
{
# Look for version
- if ( $line =~ /^$exe_mysqld\s\sVer\s([0-9]*)\.([0-9]*)\.([0-9]*)/ )
+ my $exe_name= basename($exe_mysqld);
+ mtr_verbose("exe_name: $exe_name");
+ if ( $line =~ /^\S*$exe_name\s\sVer\s([0-9]*)\.([0-9]*)\.([0-9]*)/ )
{
#print "Major: $1 Minor: $2 Build: $3\n";
$mysql_version_id= $1*10000 + $2*100 + $3;