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

Side by Side Diff: gdb/testsuite/gdb.base/break-on-linker-gcd-function.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.base/break-interp.exp ('k') | gdb/testsuite/gdb.base/call-ar-st.exp » ('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 2011-2012 Free Software Foundation, Inc. 1 # Copyright 2011-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 # This file is part of the gdb testsuite 16 # This file is part of the gdb testsuite
17 17
18 # Test casting, especially between class types or pointer-to-class 18 # Test casting, especially between class types or pointer-to-class
19 # types. 19 # types.
20 20
21 # This file is part of the gdb testsuite 21 # This file is part of the gdb testsuite
22 22
23 if $tracelevel then {
24 strace $tracelevel
25 }
26
27 # 23 #
28 # test running programs 24 # test running programs
29 # 25 #
30 if { [skip_cplus_tests] } { continue } 26 if { [skip_cplus_tests] } { continue }
31 27
32 set testfile "break-on-linker-gcd-function" 28 set testfile "break-on-linker-gcd-function"
33 set srcfile ${testfile}.cc 29 set srcfile ${testfile}.cc
34 set binfile ${objdir}/${subdir}/${testfile} 30 set binfile ${objdir}/${subdir}/${testfile}
35 31
36 if [get_compiler_info ${binfile} "c++"] { 32 if [get_compiler_info "c++"] {
37 return -1; 33 return -1;
38 } 34 }
39 35
40 set additional_flags {-ffunction-sections -Wl,--gc-sections} 36 set additional_flags {-ffunction-sections -Wl,--gc-sections}
41 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \ 37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable \
42 [list debug c++ additional_flags=$additional_flags]] != "" } { 38 [list debug c++ additional_flags=$additional_flags]] != "" } {
43 untested $srcfile 39 untested $srcfile
44 return -1 40 return -1
45 } 41 }
46 42
47 clean_restart $testfile 43 clean_restart $testfile
48 44
49 # Single hex digit 45 # Single hex digit
50 set xd {[0-9a-f]} 46 set xd {[0-9a-f]}
51 47
52 # This accepts e.g. "Breakpoint 1 at 0x40968a" (fixed GDB) 48 # This accepts e.g. "Breakpoint 1 at 0x40968a" (fixed GDB)
53 # but rejects e.g. "Breakpoint 1 at 0x4" (broken GDB). 49 # but rejects e.g. "Breakpoint 1 at 0x4" (broken GDB).
54 gdb_test "b [gdb_get_line_number "gdb break here"]" "Breakpoint \[0-9\] at 0x${x d}${xd}+: .*" 50 gdb_test "b [gdb_get_line_number "gdb break here"]" "Breakpoint \[0-9\] at 0x${x d}${xd}+: .*"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/break-interp.exp ('k') | gdb/testsuite/gdb.base/call-ar-st.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698