aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2012-01-02 18:04:26 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2012-01-02 18:04:26 +0000
commit0852fee32a07e27b3d02e8a44770d8ad08a05a37 (patch)
treec86c38764b89f79fe44861d83ad9d2332e379900 /gdb
parent0cd09acb331b04068318fd7e2482a4f30495d586 (diff)
downloadfsf-binutils-gdb-0852fee32a07e27b3d02e8a44770d8ad08a05a37.zip
fsf-binutils-gdb-0852fee32a07e27b3d02e8a44770d8ad08a05a37.tar.gz
fsf-binutils-gdb-0852fee32a07e27b3d02e8a44770d8ad08a05a37.tar.bz2
* gdb.cell/fork.exp: Delete breakpoints after reaching main.
* gdb.cell/gcore.exp: Likewise. * gdb.cell/solib-symbol.exp: Use "info symbol" instead of "break" to verify the correct instance of main is selected.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog7
-rw-r--r--gdb/testsuite/gdb.cell/fork.exp2
-rw-r--r--gdb/testsuite/gdb.cell/gcore.exp2
-rw-r--r--gdb/testsuite/gdb.cell/solib-symbol.exp17
4 files changed, 19 insertions, 9 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 751aa66..40bedc5 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2011-01-02 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * gdb.cell/fork.exp: Delete breakpoints after reaching main.
+ * gdb.cell/gcore.exp: Likewise.
+ * gdb.cell/solib-symbol.exp: Use "info symbol" instead of "break"
+ to verify the correct instance of main is selected.
+
2012-01-02 Joel Brobecker <brobecker@adacore.com>
* dg-extract-results.sh, gdb.arch/gcore.c, gdb.arch/gdb1558.c,
diff --git a/gdb/testsuite/gdb.cell/fork.exp b/gdb/testsuite/gdb.cell/fork.exp
index b8c603d..0e713e8 100644
--- a/gdb/testsuite/gdb.cell/fork.exp
+++ b/gdb/testsuite/gdb.cell/fork.exp
@@ -61,6 +61,8 @@ if ![runto_main] then {
return 0
}
+delete_breakpoints
+
gdb_test_no_output "set spu stop-on-load" "set spu stop-on-load"
gdb_test "continue" "Continuing\\..*Temporary breakpoint \[0-9\]+, main \\(speid=.*, argp=.*, envp=.*\\) at .*$spu_file\\.c:.*spu_write_out_intr_mbox.*" \
diff --git a/gdb/testsuite/gdb.cell/gcore.exp b/gdb/testsuite/gdb.cell/gcore.exp
index 304657e..7986e56 100644
--- a/gdb/testsuite/gdb.cell/gcore.exp
+++ b/gdb/testsuite/gdb.cell/gcore.exp
@@ -65,6 +65,8 @@ if ![runto_main] then {
return 0
}
+delete_breakpoints
+
gdb_test "continue" ".*Aborted.*"
set escapedfilename [string_to_regexp ${objdir}/${subdir}/gcore.test]
diff --git a/gdb/testsuite/gdb.cell/solib-symbol.exp b/gdb/testsuite/gdb.cell/solib-symbol.exp
index 274f776..dc262c8 100644
--- a/gdb/testsuite/gdb.cell/solib-symbol.exp
+++ b/gdb/testsuite/gdb.cell/solib-symbol.exp
@@ -61,20 +61,19 @@ if ![runto_main] then {
return 0
}
-# Breakpoint resolved in PPU thread.
-gdb_test "break foo" \
- "Breakpoint.*file.*$ppu_file.c.*" \
- "br foo in break"
+# Symbol resolved in PPU thread.
+gdb_test "info symbol foo" \
+ "foo in section \.text of .*$ppu_file\[\r\n\]+.*" \
+ "info symbol foo in break"
# Continue to SPU
cont_spu_main
check_spu_arch ""
-# Breakpoint resolved in SPU thread.
-delete_breakpoints
-gdb_test "break foo" \
- "Breakpoint.*file.*$spu_file.c.*" \
- "br foo in $spu_file.c"
+# Symbol resolved in SPU thread.
+gdb_test "info symbol foo" \
+ "foo in section \.text of .*$spu_file@.*" \
+ "info symbol foo in break-spu"
gdb_exit
return 0