1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Bug #48808 mysql-test-run.pl --debugger=devenv does not work

Wrong argument order, fixed
This commit is contained in:
Bjorn Munch
2009-11-18 10:27:43 +01:00
parent 052688855e
commit eb2ad909d4

View File

@ -5086,9 +5086,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;