diff options
author | Magnus Svensson <msvensson@mysql.com> | 2009-01-27 10:45:39 +0100 |
---|---|---|
committer | Magnus Svensson <msvensson@mysql.com> | 2009-01-27 10:45:39 +0100 |
commit | 5e6d3997e9eba2b974b65426bfa130e13c0aaddd (patch) | |
tree | 727ca38226da56569ad835540848c3e7a7f94af1 /mysql-test | |
parent | 47e19cf2d57a11441629c03e3e61e7469b3cd879 (diff) | |
download | mariadb-git-5e6d3997e9eba2b974b65426bfa130e13c0aaddd.tar.gz |
Bug#42358 fulltext_plugin test fails on pushbuild: Too many arguments (first extra is '')
- pass empty "--plugin-dir" if simple parser was not found.
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 49d40915985..4bd9f107f9d 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1677,8 +1677,8 @@ sub environment_setup { $ENV{'SIMPLE_PARSER'}= ($lib_simple_parser ? basename($lib_simple_parser) : ""); - $ENV{'SIMPLE_PARSER_OPT'}= - ($lib_simple_parser ? "--plugin_dir=" . dirname($lib_simple_parser) : ""); + $ENV{'SIMPLE_PARSER_OPT'}= "--plugin-dir=". + ($lib_simple_parser ? dirname($lib_simple_parser) : ""); # -------------------------------------------------------------------------- # Valgrind need to be run with debug libraries otherwise it's almost |