diff options
author | Yao Qi <yao@codesourcery.com> | 2013-03-15 01:33:40 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-03-15 01:33:40 +0000 |
commit | 2c415c0f382fd6361d9d702ebdd71cd6d6a06d19 (patch) | |
tree | 11091eec101615a2da8bb41dc8ca0ccc75a129c4 /gdb | |
parent | 461103507e58dba004480f2b009b56bceed944aa (diff) | |
download | fsf-binutils-gdb-2c415c0f382fd6361d9d702ebdd71cd6d6a06d19.zip fsf-binutils-gdb-2c415c0f382fd6361d9d702ebdd71cd6d6a06d19.tar.gz fsf-binutils-gdb-2c415c0f382fd6361d9d702ebdd71cd6d6a06d19.tar.bz2 |
gdb/testsuite/
* gdb.base/condbreak.exp: Add semicolon back which was removed
by my previous commit.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/condbreak.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b0139d0..2b86ab0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-03-15 Yao Qi <yao@codesourcery.com> + + * gdb.base/condbreak.exp: Add semicolon back which was removed + by my previous commit. + 2013-03-14 Yao Qi <yao@codesourcery.com> * config/monitor.exp (gdb_target_cmd): Remove semicolon after diff --git a/gdb/testsuite/gdb.base/condbreak.exp b/gdb/testsuite/gdb.base/condbreak.exp index 1f28c25..c09228c 100644 --- a/gdb/testsuite/gdb.base/condbreak.exp +++ b/gdb/testsuite/gdb.base/condbreak.exp @@ -165,7 +165,7 @@ gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=. # stop location, but avoids clutter when possible. # # Suppose you have a function written completely on one source line, like: -# int foo (int x) { return 0 } +# int foo (int x) { return 0; } # Setting a breakpoint at `foo' actually places the breakpoint after # foo's prologue. # |