]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Rename disp-step-syscall.exp to step-over-syscall.exp
authorYao Qi <yao.qi@linaro.org>
Thu, 3 Mar 2016 09:17:45 +0000 (09:17 +0000)
committerYao Qi <yao.qi@linaro.org>
Thu, 3 Mar 2016 09:17:45 +0000 (09:17 +0000)
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-03-03  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/testsuite/ChangeLog
gdb/testsuite/gdb.base/step-over-fork.c [moved from gdb/testsuite/gdb.base/disp-step-fork.c with 100% similarity]
gdb/testsuite/gdb.base/step-over-syscall.exp [moved from gdb/testsuite/gdb.base/disp-step-syscall.exp with 96% similarity]
gdb/testsuite/gdb.base/step-over-vfork.c [moved from gdb/testsuite/gdb.base/disp-step-vfork.c with 100% similarity]

index eab1255d62b3e371a271fe5849a6860ff926dc76..0104448a85d5ff9764604ff523b6d2ac3e97e66d 100644 (file)
@@ -1,3 +1,14 @@
+2016-03-03  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.
+
 2016-03-03  Yao Qi  <yao.qi@linaro.org>
 
        * gdb.base/disp-step-syscall.exp (break_cond_on_syscall): New.
similarity index 96%
rename from gdb/testsuite/gdb.base/disp-step-syscall.exp
rename to gdb/testsuite/gdb.base/step-over-syscall.exp
index 0aac6491d73910d84804c9b97375e6d85134503c..4728ec8d141c804b5a4e3ad362a1901dae0604d2 100644 (file)
@@ -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"