This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 5/7] Rename disp-step-syscall.exp to step-over-syscall.exp
- From: Yao Qi <qiyaoltc at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Fri, 26 Feb 2016 14:03:44 +0000
- Subject: [PATCH 5/7] Rename disp-step-syscall.exp to step-over-syscall.exp
- Authentication-results: sourceware.org; auth=none
- References: <1455892594-2294-1-git-send-email-yao dot qi at linaro dot org> <1456495426-7520-1-git-send-email-yao dot qi at linaro dot org>
disp-step-syscall.exp is extended for stepping over syscall instruction
in different cases, with or without displaced stepping, and stepping
over by GDBserver.
This patch rename disp-step-syscall.exp to step-over-syscall.exp to
reflect this.
gdb/testsuite:
2016-02-26 Yao Qi <yao.qi@linaro.org>
* gdb.base/disp-step-fork.c: Rename to ...
* gdb.base/step-over-fork.c: ... it. New file.
* gdb.base/disp-step-vfork.c: Rename to ...
* gdb.base/step-over-vfork.c: ... it. New file.
* gdb.base/disp-step-syscall.exp: Rename to ...
* gdb.base/step-over-syscall.exp: ... it. New file.
(disp_step_cross_syscall): Rename to ...
(step_over_syscall): ... it.
---
.../gdb.base/{disp-step-fork.c => step-over-fork.c} | 0
.../{disp-step-syscall.exp => step-over-syscall.exp} | 14 +++++++-------
.../gdb.base/{disp-step-vfork.c => step-over-vfork.c} | 0
3 files changed, 7 insertions(+), 7 deletions(-)
rename gdb/testsuite/gdb.base/{disp-step-fork.c => step-over-fork.c} (100%)
rename gdb/testsuite/gdb.base/{disp-step-syscall.exp => step-over-syscall.exp} (96%)
rename gdb/testsuite/gdb.base/{disp-step-vfork.c => step-over-vfork.c} (100%)
diff --git a/gdb/testsuite/gdb.base/disp-step-fork.c b/gdb/testsuite/gdb.base/step-over-fork.c
similarity index 100%
rename from gdb/testsuite/gdb.base/disp-step-fork.c
rename to gdb/testsuite/gdb.base/step-over-fork.c
diff --git a/gdb/testsuite/gdb.base/disp-step-syscall.exp b/gdb/testsuite/gdb.base/step-over-syscall.exp
similarity index 96%
rename from gdb/testsuite/gdb.base/disp-step-syscall.exp
rename to gdb/testsuite/gdb.base/step-over-syscall.exp
index 9ecf2a5..6146f64 100644
--- a/gdb/testsuite/gdb.base/disp-step-syscall.exp
+++ b/gdb/testsuite/gdb.base/step-over-syscall.exp
@@ -47,7 +47,7 @@ proc check_pc_after_cross_syscall { syscall syscall_insn_next_addr } {
proc setup { syscall } {
global gdb_prompt syscall_insn
- set testfile "disp-step-$syscall"
+ set testfile "step-over-$syscall"
clean_restart $testfile
@@ -107,12 +107,12 @@ proc setup { syscall } {
return [list $syscall_insn_addr [get_hexadecimal_valueof "\$pc" "0"]]
}
-proc disp_step_cross_syscall { syscall } {
+proc step_over_syscall { syscall } {
with_test_prefix "$syscall" {
global syscall_insn
global gdb_prompt
- set testfile "disp-step-$syscall"
+ set testfile "step-over-$syscall"
if [build_executable ${testfile}.exp ${testfile} ${testfile}.c {debug}] {
untested ${testfile}.exp
@@ -174,7 +174,7 @@ proc disp_step_cross_syscall { syscall } {
proc break_cond_on_syscall { syscall } {
with_test_prefix "break cond on target : $syscall" {
- set testfile "disp-step-$syscall"
+ set testfile "step-over-$syscall"
set ret [setup $syscall]
@@ -200,10 +200,10 @@ proc break_cond_on_syscall { syscall } {
}
}
-disp_step_cross_syscall "fork"
-disp_step_cross_syscall "vfork"
+step_over_syscall "fork"
+step_over_syscall "vfork"
-set testfile "disp-step-fork"
+set testfile "step-over-fork"
clean_restart $testfile
if { ![runto main] } then {
fail "run to main"
diff --git a/gdb/testsuite/gdb.base/disp-step-vfork.c b/gdb/testsuite/gdb.base/step-over-vfork.c
similarity index 100%
rename from gdb/testsuite/gdb.base/disp-step-vfork.c
rename to gdb/testsuite/gdb.base/step-over-vfork.c
--
1.9.1