Commit eb2ad909 authored by Bjorn Munch's avatar Bjorn Munch

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

Wrong argument order, fixed
parent 05268885
...@@ -5086,9 +5086,9 @@ sub debugger_arguments { ...@@ -5086,9 +5086,9 @@ sub debugger_arguments {
{ {
# vc[express] /debugexe exe arg1 .. argn # vc[express] /debugexe exe arg1 .. argn
# Add /debugexe and name of the exe before args # Add name of the exe and /debugexe before args
unshift(@$$args, "/debugexe");
unshift(@$$args, "$$exe"); unshift(@$$args, "$$exe");
unshift(@$$args, "/debugexe");
# Set exe to debuggername # Set exe to debuggername
$$exe= $debugger; $$exe= $debugger;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment