]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Reformat gdb.base/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)
gdb/testsuite:

2016-03-03  Yao Qi  <yao.qi@linaro.org>

* gdb.base/step-over-syscall.exp (disp_step_cross_syscall): Fix
code format.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/step-over-syscall.exp

index 0104448a85d5ff9764604ff523b6d2ac3e97e66d..54be3436083e37d5a6ffa6b3c6c14fbbc994c3db 100644 (file)
@@ -1,3 +1,8 @@
+2016-03-03  Yao Qi  <yao.qi@linaro.org>
+
+       * gdb.base/step-over-syscall.exp (disp_step_cross_syscall): Fix
+       code format.
+
 2016-03-03  Yao Qi  <yao.qi@linaro.org>
 
        * gdb.base/disp-step-fork.c: Rename to ...
index 4728ec8d141c804b5a4e3ad362a1901dae0604d2..c77ffdcee0b44cca791a39fb5e1dffdfcb23be68 100644 (file)
@@ -124,46 +124,45 @@ proc step_over_syscall { syscall } {
                continue
            }
 
-       set ret [setup $syscall]
+           set ret [setup $syscall]
 
-       set syscall_insn_addr [lindex $ret 0]
-       set syscall_insn_next_addr [lindex $ret 1]
-       if { $syscall_insn_addr == -1 } {
-           return -1
-       }
+           set syscall_insn_addr [lindex $ret 0]
+           set syscall_insn_next_addr [lindex $ret 1]
+           if { $syscall_insn_addr == -1 } {
+               return -1
+           }
 
-       gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, (.* in |__libc_|)$syscall \\(\\).*" \
-           "continue to $syscall (3rd time)"
+           gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, (.* in |__libc_|)$syscall \\(\\).*" \
+               "continue to $syscall (3rd time)"
 
-       # Hit the breakpoint on $syscall for the third time.  In this time, we'll set
-       # breakpoint on the syscall insn we recorded previously, and single step over it.
+           # Hit the breakpoint on $syscall for the third time.  In this time, we'll set
+           # breakpoint on the syscall insn we recorded previously, and single step over it.
 
-       set syscall_insn_bp 0
-       gdb_test_multiple "break \*$syscall_insn_addr"  "break on syscall insn" {
-           -re "Breakpoint (\[0-9\]*) at .*$gdb_prompt $" {
-               set syscall_insn_bp $expect_out(1,string)
-               pass "break on syscall insns"
+           set syscall_insn_bp 0
+           gdb_test_multiple "break \*$syscall_insn_addr"  "break on syscall insn" {
+               -re "Breakpoint (\[0-9\]*) at .*$gdb_prompt $" {
+                   set syscall_insn_bp $expect_out(1,string)
+                   pass "break on syscall insns"
+               }
            }
-       }
 
-       gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, .*" \
-           "continue to syscall insn $syscall"
+           gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, .*" \
+               "continue to syscall insn $syscall"
 
-       gdb_test_no_output "set displaced-stepping $displaced"
+           gdb_test_no_output "set displaced-stepping $displaced"
 
-       # Check the address of next instruction of syscall.
-       if {[gdb_test "stepi" "x/i .*=>.*" "single step over $syscall"] != 0} {
-           return -1
-       }
-
-       check_pc_after_cross_syscall $syscall $syscall_insn_next_addr
+           # Check the address of next instruction of syscall.
+           if {[gdb_test "stepi" "x/i .*=>.*" "single step over $syscall"] != 0} {
+               return -1
+           }
+           check_pc_after_cross_syscall $syscall $syscall_insn_next_addr
 
-       # Delete breakpoint syscall insns to avoid interference to other syscalls.
-       delete_breakpoints
+           # Delete breakpoint syscall insns to avoid interference to other syscalls.
+           delete_breakpoints
 
-       gdb_test "break marker" "Breakpoint.*at.* file .*${testfile}.c, line.*"
-       gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, marker \\(\\) at.*" \
-           "continue to marker ($syscall)"
+           gdb_test "break marker" "Breakpoint.*at.* file .*${testfile}.c, line.*"
+           gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, marker \\(\\) at.*" \
+               "continue to marker ($syscall)"
        }
     }
 }