OSDN Git Service

2011-05-24 Pedro Alves <pedro@codesourcery.com>
authorpalves <palves>
Tue, 24 May 2011 10:48:17 +0000 (10:48 +0000)
committerpalves <palves>
Tue, 24 May 2011 10:48:17 +0000 (10:48 +0000)
gdb/
* solib-svr4.c (svr4_solib_create_inferior_hook): Skip setting
shared library event breakpoint if there's no execution.

gdb/testsuite/
* gdb.trace/tfile.exp: Add test that opening the basic.tf trace
file doesn't error, using MI.

gdb/ChangeLog
gdb/solib-svr4.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.trace/tfile.exp

index 02845f1..81714fb 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-24  Pedro Alves  <pedro@codesourcery.com>
+
+       * solib-svr4.c (svr4_solib_create_inferior_hook): Skip setting
+       shared library event breakpoint if there's no execution.
+
 2011-05-24  Thiago Jung Bauermann  <bauerman@br.ibm.com>
 
        * breakpont.c (remove_hw_watchpoints): Remove unused function.
index bcb94e7..f668f83 100644 (file)
@@ -2188,6 +2188,11 @@ svr4_solib_create_inferior_hook (int from_tty)
   /* Relocate the main executable if necessary.  */
   svr4_relocate_main_executable ();
 
+  /* No point setting a breakpoint in the dynamic linker if we can't
+     hit it (e.g., a core file, or a trace file).  */
+  if (!target_has_execution)
+    return;
+
   if (!svr4_have_link_map_offsets ())
     return;
 
index 034a5fe..b21ca76 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-24  Pedro Alves  <pedro@codesourcery.com>
+
+       * gdb.trace/tfile.exp: Add test that opening the basic.tf trace
+       file doesn't error, using MI.
+
 2011-05-23  Tom Tromey  <tromey@redhat.com>
 
        * gdb.base/charset.exp (string_display): Add tests to assign to
index 37a7f42..fbbcf4b 100644 (file)
@@ -116,3 +116,8 @@ Collected 0 trace frame.*
 Trace buffer has 256 bytes of 4096 bytes free \\(93% full\\).*
 Not looking at any trace frame.*" \
     "tstatus on error trace file"
+
+# Make sure we can reopen without error.
+gdb_test \
+    "interpreter-exec mi \"-target-select tfile basic.tf\"" \
+    "\\^connected.*"