summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Shulga <dmitry.shulga@mariadb.com>2021-03-22 18:55:59 +0700
committerDmitry Shulga <dmitry.shulga@mariadb.com>2021-03-22 18:55:59 +0700
commit0e9657017189883d3fbe3604e96fad9fc558dc23 (patch)
treea8a70b980ef199523f0ba7c04153edb1353d4175
parentb58b289827af4a4905a8afeee9c381f3b593c293 (diff)
downloadmariadb-git-0e9657017189883d3fbe3604e96fad9fc558dc23.tar.gz
Added missed ' -- ' between the end of the lldb command options and the beginning of the arguments.
-rw-r--r--mysql-test/lib/My/Debugger.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/My/Debugger.pm b/mysql-test/lib/My/Debugger.pm
index a2d5f2a5435..7331238e1c8 100644
--- a/mysql-test/lib/My/Debugger.pm
+++ b/mysql-test/lib/My/Debugger.pm
@@ -61,7 +61,7 @@ my %debuggers = (
lldb => {
term => 1,
options => '-s {script} {exe}',
- script => 'process launch --stop-at-entry {args}',
+ script => 'process launch --stop-at-entry -- {args}',
},
valgrind => {
options => '--tool=memcheck --show-reachable=yes --leak-check=yes --num-callers=16 --quiet --suppressions='.cwd().'/valgrind.supp {exe} {args} --loose-wait-for-pos-timeout=1500',