aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-08-10 14:42:36 -0600
committerTom Tromey <tom@tromey.com>2022-12-19 07:46:45 -0700
commitd1c34a1b4c4ee82744f7f8215b23706c329b63e6 (patch)
tree4485017adc5bb0569eaeee95757f82ee6482d999
parent956bc7a29fd952d709db29667b38f98cdd3db4c9 (diff)
downloadgdb-d1c34a1b4c4ee82744f7f8215b23706c329b63e6.zip
gdb-d1c34a1b4c4ee82744f7f8215b23706c329b63e6.tar.gz
gdb-d1c34a1b4c4ee82744f7f8215b23706c329b63e6.tar.bz2
Remove vestiges of MI version 0
I found a few vestiges of MI version 0 in the test suite. This patch removes them.
-rw-r--r--gdb/testsuite/lib/mi-support.exp27
1 files changed, 0 insertions, 27 deletions
diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
index 2dccb89..573a9b9 100644
--- a/gdb/testsuite/lib/mi-support.exp
+++ b/gdb/testsuite/lib/mi-support.exp
@@ -1414,33 +1414,6 @@ proc mi_continue_to {func} {
mi_runto_helper $func "continue"
}
-proc mi0_execute_to { cmd reason func args file line extra test } {
- mi_execute_to_helper "$cmd" "$reason" "$func" "\{$args\}" \
- "$file" "$line" "$extra" "$test"
-}
-
-proc mi0_next_to { func args file line test } {
- mi0_execute_to "exec-next" "end-stepping-range" "$func" "$args" \
- "$file" "$line" "" "$test"
-}
-
-proc mi0_step_to { func args file line test } {
- mi0_execute_to "exec-step" "end-stepping-range" "$func" "$args" \
- "$file" "$line" "" "$test"
-}
-
-proc mi0_finish_to { func args file line result ret test } {
- mi0_execute_to "exec-finish" "function-finished" "$func" "$args" \
- "$file" "$line" \
- ",gdb-result-var=\"$result\",return-value=\"$ret\"" \
- "$test"
-}
-
-proc mi0_continue_to { bkptno func args file line test } {
- mi0_execute_to "exec-continue" "breakpoint-hit\",bkptno=\"$bkptno" \
- "$func" "$args" "$file" "$line" "" "$test"
-}
-
# Creates a breakpoint and checks the reported fields are as expected.
# This procedure takes the same options as mi_make_breakpoint and
# returns the breakpoint regexp from that procedure.