gdb/testsuite/

* gdb.base/condbreak.exp: Add semicolon back which was removed
	by my previous commit.
This commit is contained in:
Yao Qi 2013-03-15 01:33:40 +00:00
parent 461103507e
commit 2c415c0f38
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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.
#