This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT] Fixes testsuit/gdb.base/annota1.exp to deal with 'Breakpoint address adjusted'


Here is the patch I commited.

-=# Paul #=-

2005-04-27  Paul Gilliam  <pgilliam@us.ibm.com>

        * gdb.base/annota1.exp : Deal with messages caused by breakpoints in
        shared objects being adjusted and update copyright.

Index: gdb.base/annota1.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.base/annota1.exp,v
retrieving revision 1.16
diff -c -3 -p -r1.16 annota1.exp
*** gdb.base/annota1.exp        20 Jul 2004 00:24:41 -0000      1.16
--- gdb.base/annota1.exp        27 Apr 2005 21:38:32 -0000
***************
*** 1,4 ****
! # Copyright 1999, 2000, 2001, 2002, 2003, 2004 Free Software
  # Foundation, Inc.

  # This program is free software; you can redistribute it and/or modify
--- 1,4 ----
! # Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
  # Foundation, Inc.

  # This program is free software; you can redistribute it and/or modify
*************** send_gdb "break printf\n"
*** 229,234 ****
--- 229,236 ----
  gdb_expect {
    -re  "\r\n\032\032post-prompt\r\n\r\n\032\032breakpoints-invalid\r\nBreakpoint.*at $hex.*$gdb_prompt$" \
            { pass "breakpoint printf" }
+   -re  "\r\n\032\032post-prompt\r\nwarning: Breakpoint address adjusted from $hex to $hex.\r\n\r\n\032\032breakpoints-invalid\r\nBreakpoint.*at $hex.*$gdb_prompt$" \
+           { pass "breakpoint printf"}
    -re ".*$gdb_prompt$"     { fail "break printf" }
    timeout                 { fail "break printf (timeout)" }
  }
*************** send_gdb "continue\n"
*** 240,245 ****
--- 242,250 ----
  gdb_expect {
    -re "\r\n\032\032post-prompt\r\nContinuing.\r\n\r\n\032\032starting\r\n\r\n\032\032frames-invalid\r\n\r\n\032\032breakpoint 3\r\n\r\nBreakpoint 3, \r\n\032\032frame-begin 0 $hex\r\n\r\n(\032\032frame-address\r\n$hex\r\n\032\032frame-address-end\r\n in \r\n)*\032\032frame-function-name\r\nprintf\r\n\032\032frame-args\r\n.*\032\032frame-end\r\n\r\n\032\032stopped\r\n$gdb_prompt$" \
          { pass "continue to printf" }
+   -re "\r\n\032\032post-prompt\r\nContinuing.\r\n\r\n\032\032starting\r\n\r\n\032\032frames-invalid\r\nwarning: Breakpoint 3 address previously adjusted from $hex to $hex.\r\n\r\n\032\032breakpoint 3\r\n\r\nBreakpoint 3, \r\n\032\032frame-begin 0 $hex\r\n\r\n(\032\032frame-address\r\n$hex\r\n\032\032frame-address-end\r\n in \r\n)*.*\032\032frame-function-name\r\n.printf\r\n\032\032frame-args\r\n.*\032\032frame-end\r\n\r\n\032\032stopped\r\n$gdb_prompt$" \
+         { pass "continue to printf" }
+
    -re ".*$gdb_prompt$"     { fail "continue to printf" }
    timeout                 { fail "continue to printf (timeout)" }
  }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]