diff options
author | unknown <serg@janus.mylan> | 2007-04-18 14:24:09 +0200 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-04-18 14:24:09 +0200 |
commit | 671fe35553f592a118d29442016e84331aa7545e (patch) | |
tree | 263ddaa89c68c3c897593caa1c92f6c058c7eccd /mysql-test/lib | |
parent | 3673ac90a25a76bbbe64f991fb26563676f4b094 (diff) | |
download | mariadb-git-671fe35553f592a118d29442016e84331aa7545e.tar.gz |
mysql-test/mysql-test-run.pl
set --language correctly even for --help (to have full plugin help)
mysql-test/lib/mtr_cases.pl
more robust check for innodb
mysql-test/lib/mtr_cases.pl:
more robust check for innodb
mysql-test/mysql-test-run.pl:
set --language correctly even for --help (to have full plugin help)
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/mtr_cases.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_cases.pl b/mysql-test/lib/mtr_cases.pl index 28c78fbffeb..d7aa4445551 100644 --- a/mysql-test/lib/mtr_cases.pl +++ b/mysql-test/lib/mtr_cases.pl @@ -580,7 +580,7 @@ sub collect_one_test_case($$$$$$$) { if ( $tinfo->{'innodb_test'} ) { # This is a test that need innodb - if ( $::mysqld_variables{'innodb'} eq "FALSE" ) + if ( $::mysqld_variables{'innodb'} ne "TRUE" ) { # innodb is not supported, skip it $tinfo->{'skip'}= 1; |