summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorBjorn Munch <Bjorn.Munch@sun.com>2009-11-19 10:19:18 +0100
committerBjorn Munch <Bjorn.Munch@sun.com>2009-11-19 10:19:18 +0100
commitdb1b1160dd7dfe2b552682682e2d9ce806668d2b (patch)
treebb6034b9e98f8c39de7cf5e2cce95c84af515f11 /mysql-test/mysql-test-run.pl
parent964a6ebaacab1fc774aedc176a9c93975876fe7e (diff)
parent54bdfab91e9e34a14d07c8d110dbb7d43f8a8d73 (diff)
downloadmariadb-git-db1b1160dd7dfe2b552682682e2d9ce806668d2b.tar.gz
merge 48808
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-xmysql-test/mysql-test-run.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl
index b470c4e6878..ae9674bbde5 100755
--- a/mysql-test/mysql-test-run.pl
+++ b/mysql-test/mysql-test-run.pl
@@ -5099,9 +5099,9 @@ sub debugger_arguments {
{
# vc[express] /debugexe exe arg1 .. argn
- # Add /debugexe and name of the exe before args
- unshift(@$$args, "/debugexe");
+ # Add name of the exe and /debugexe before args
unshift(@$$args, "$$exe");
+ unshift(@$$args, "/debugexe");
# Set exe to debuggername
$$exe= $debugger;