diff options
author | unknown <knielsen@mysql.com> | 2006-04-24 15:34:01 +0200 |
---|---|---|
committer | unknown <knielsen@mysql.com> | 2006-04-24 15:34:01 +0200 |
commit | f9216cdf8d40c0552382fd0788d03dc20db2d94c (patch) | |
tree | 062ce9d10dc62997165d646bf1d55bee17ab7cda /mysql-test/mysql-test-run.pl | |
parent | 73f5ae213d18d62ca9489577798a8a2beec9c9bc (diff) | |
download | mariadb-git-f9216cdf8d40c0552382fd0788d03dc20db2d94c.tar.gz |
Fix typo in mysql-test-run.pl (not caught by aotupush since it uses mysql-test-run.sh).
mysql-test/mysql-test-run.pl:
Fix typo.
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 aa9d22ffded..121102ec262 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -2436,7 +2436,7 @@ sub valgrind_arguments { if ( $opt_valgrind_options ) { # FIXME split earlier and put into @glob_valgrind_* - mtr_add_arg($args, '%s', $_) for (split(' ', $opt_valgrind_options))); + mtr_add_arg($args, '%s', $_) for (split(' ', $opt_valgrind_options)); } mtr_add_arg($args, $$exe); |