Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: gdb/testsuite/gdb.linespec/thread.exp

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.linespec/thread.c ('k') | gdb/testsuite/gdb.mi/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2009-2012 Free Software Foundation, Inc. 1 # Copyright 2012 Free Software Foundation, Inc.
2 2
3 # This program is free software; you can redistribute it and/or modify 3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by 4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or 5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version. 6 # (at your option) any later version.
7 # 7 #
8 # This program is distributed in the hope that it will be useful, 8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 11 # GNU General Public License for more details.
12 # 12 #
13 # You should have received a copy of the GNU General Public License 13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>. 14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 15
16 if {[skip_hw_watchpoint_access_tests]} { 16 # http://sourceware.org/bugzilla/show_bug.cgi?id=14643
17 return 0 17 # gdb 7.5 thinks "thread" is a linespec keyword.
18 }
19 18
20 set test watchpoint-hw-hit-once 19 standard_testfile
21 set srcfile ${test}.c 20 set exefile $testfile
22 if { [prepare_for_testing ${test}.exp ${test} ${srcfile}] } { 21
22 if {[prepare_for_testing $testfile $exefile $srcfile {debug}]} {
23 return -1 23 return -1
24 } 24 }
25 25
26 if ![runto_main] { 26 if ![runto_main] {
27 return -1 27 fail "Can't run to main"
28 return 0
28 } 29 }
29 30
30 gdb_test "rwatch watchee" 31 set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
31 32
32 gdb_breakpoint [gdb_get_line_number "break-at-exit"] 33 gdb_test "break $srcfile:$bp_location1" \
34 "Breakpoint.*at.* file .*$srcfile, line $bp_location1\\." \
35 "breakpoint line number in file"
33 36
34 gdb_test "continue" "Continuing.\r\nHardware read watchpoint \[0-9\]+: watchee\r \n\r\nValue = 0\r\n.*" 37 gdb_continue_to_breakpoint "$bp_location1"
35 38
36 # Here should be no repeated notification of the read watchpoint. 39 gdb_breakpoint "thread" "message"
37 gdb_test "continue" \ 40
38 » "Continuing\\.\[ \r\n\]+Breakpoint \[0-9\]+, .*break-at-exit.*" \ 41 gdb_continue_to_breakpoint "thread function"
39 » "continue to break-at-exit"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.linespec/thread.c ('k') | gdb/testsuite/gdb.mi/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698