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.
+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.
/* 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;
+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
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.*"