diff options
author | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2021-03-22 18:55:59 +0700 |
---|---|---|
committer | Dmitry Shulga <dmitry.shulga@mariadb.com> | 2021-03-22 18:55:59 +0700 |
commit | 0e9657017189883d3fbe3604e96fad9fc558dc23 (patch) | |
tree | a8a70b980ef199523f0ba7c04153edb1353d4175 /mysql-test/lib | |
parent | b58b289827af4a4905a8afeee9c381f3b593c293 (diff) | |
download | mariadb-git-0e9657017189883d3fbe3604e96fad9fc558dc23.tar.gz |
Added missed ' -- ' between the end of the lldb command options and the beginning of the arguments.
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/Debugger.pm | 2 |
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', |