diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-09-29 11:11:46 -0300 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-09-29 11:11:46 -0300 |
commit | 73153f1cb354cf6c38f4c9ba80714ef849cddb65 (patch) | |
tree | 952cae708535c3d711b821fd0edc055a9ae88ee5 /mysql-test/mysql-test-run.pl | |
parent | fc3740368aed05f95da167deda7544a91a904d3f (diff) | |
download | mariadb-git-73153f1cb354cf6c38f4c9ba80714ef849cddb65.tar.gz |
Don't use the semicolon character as a argument separator as it
can be interpreted as a shell metacharacter in some circumstances.
For example, it is interpreted as a command separator when invoking
a debugger.
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 114b6c84aa3..5cae3e8258b 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1812,7 +1812,7 @@ sub environment_setup { ($lib_example_plugin ? dirname($lib_example_plugin) : ""); $ENV{'HA_EXAMPLE_SO'}="'".$plugin_filename."'"; - $ENV{'EXAMPLE_PLUGIN_LOAD'}="--plugin_load=;EXAMPLE=".$plugin_filename.";"; + $ENV{'EXAMPLE_PLUGIN_LOAD'}="--plugin_load=EXAMPLE=".$plugin_filename; } # ---------------------------------------------------- |