]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Test user-defined gdb commands and arguments stack
authorPedro Alves <palves@redhat.com>
Fri, 2 Dec 2016 19:17:13 +0000 (19:17 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 2 Dec 2016 19:22:23 +0000 (19:22 +0000)
We're missing a test that makes sure that arguments to user-defined
commands are handled correctly when a user-defined command calls
another user-defined command / recurses.

The following patch changes that code, so add such a test first so we
can be confident won't be breaking this use case.

gdb/testsuite/ChangeLog:
2016-12-02  Pedro Alves  <palves@redhat.com>

* gdb.base/commands.exp (user_defined_command_args_stack_test):
New procedure.
(top level): Call it.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/commands.exp

index c6ee46279f33e078d252c29c7765594606bb9b4b..bfae18bf1d1cd00c94b2ae5e11ecdf5b210cef89 100644 (file)
@@ -1,3 +1,9 @@
+2016-12-02  Pedro Alves  <palves@redhat.com>
+
+       * gdb.base/commands.exp (user_defined_command_args_stack_test):
+       New procedure.
+       (top level): Call it.
+
 2016-12-02  Pedro Alves  <palves@redhat.com>
 
        PR cli/20559
index 3308a9b9dd893641f8c4045bddfef9ac5dbc7452..ed85ee29e6cddd3f449c743871faf63a0d9b5061 100644 (file)
@@ -382,6 +382,64 @@ proc_with_prefix user_defined_command_args_eval {} {
     gdb_test "command_args_eval 1 2 3" "argc = 3, 1 2 3" "execute command"
 }
 
+# Test that the $argc/$argN variables are pushed on/popped from the
+# args stack correctly when a user-defined command calls another
+# user-defined command (or in this case, recurses).
+
+proc_with_prefix user_defined_command_args_stack_test {} {
+    global gdb_prompt
+
+    gdb_test_multiple "define args_stack_command" \
+       "define args_stack_command" {
+           -re "End with"  {
+               pass "define"
+           }
+       }
+
+    # Make a command that refers to $argc/$argN before and after
+    # recursing.  Also, vary the number of arguments passed to each
+    # recursion point.
+    gdb_test \
+       [multi_line \
+            {printf "before, argc = %d,", $argc} \
+            {set $i = 0} \
+            {while $i < $argc} \
+            {  eval "printf \" %%d\", $arg%d", $i} \
+            {  set $i = $i + 1} \
+            {end} \
+            {printf "\n"} \
+            {} \
+            {} \
+            {if $argc == 3} \
+            {  args_stack_command 21 22} \
+            {end} \
+            {if $argc == 2} \
+            {  args_stack_command 11} \
+            {end} \
+            {} \
+            {} \
+            {printf "after, argc = %d,", $argc} \
+            {set $i = 0} \
+            {while $i < $argc} \
+            {  eval "printf \" %%d\", $arg%d", $i} \
+            {  set $i = $i + 1} \
+            {end} \
+            {printf "\n"} \
+            {end}] \
+       "" \
+       "enter commands"
+
+    set expected \
+       [multi_line \
+            "before, argc = 3, 31 32 33" \
+            "before, argc = 2, 21 22" \
+            "before, argc = 1, 11" \
+            "after, argc = 1, 11" \
+            "after, argc = 2, 21 22" \
+            "after, argc = 3, 31 32 33"]
+    gdb_test "args_stack_command 31 32 33" $expected "execute command"
+}
+
 proc_with_prefix watchpoint_command_test {} {
     global gdb_prompt
 
@@ -913,6 +971,7 @@ infrun_breakpoint_command_test
 breakpoint_command_test
 user_defined_command_test
 user_defined_command_args_eval
+user_defined_command_args_stack_test
 watchpoint_command_test
 test_command_prompt_position
 deprecated_command_test