GDB copyright headers update after running GDB's copyright.py script.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.linespec / break-asm-file.exp
1 # Copyright 2012-2016 Free Software Foundation, Inc.
2
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
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/>.
15
16 # Bug 17394
17 # Test for break-point at a function only for a selected ASM file.
18
19 load_lib dwarf.exp
20
21 standard_testfile .c
22 set execfile $testfile
23 set asm_file1 break-asm-file1.s
24 set asm_file0 break-asm-file0.s
25
26 # This test can only be run on targets which support DWARF-2 and use gas.
27 if {![dwarf2_support]} {
28 return 0
29 }
30
31 if {[gdb_compile ${srcdir}/${subdir}/${srcfile} ${binfile}1.o \
32 object {debug nowarnings optimize=-O0}] != ""} {
33 return -1
34 }
35
36 # Compile .s files without debug information.
37 if {[gdb_compile ${srcdir}/${subdir}/$asm_file0 ${binfile}2.o \
38 object {nodebug}] != ""} {
39 return -1
40 }
41 if {[gdb_compile ${srcdir}/${subdir}/$asm_file1 ${binfile}3.o \
42 object {nodebug}] != ""} {
43 return -1
44 }
45
46 if {[gdb_compile [list ${binfile}1.o ${binfile}2.o ${binfile}3.o] \
47 "${binfile}" executable {}] != ""} {
48 return -1
49 }
50
51 clean_restart $execfile
52
53 gdb_test "break a/$asm_file0:func" \
54 "Breakpoint 1 at 0x\[0-9a-fA-F\]+: file .*a/$asm_file0, line 7\\\." \
55 "set a break-point at a global function only for a selected ASM file."
56
57 gdb_test "delete 1"
58
59 gdb_test "break b/$asm_file0:func" \
60 "Breakpoint 2 at 0x\[0-9a-fA-F\]+: file .*b/$asm_file0, line 7\\\." \
61 "set a break-point at a function only for a selected ASM file."
62
63 gdb_test "delete 2"
64
65 gdb_test "break $asm_file0:func" \
66 "Breakpoint 3 at 0x\[0-9a-fA-F\]+: .*$asm_file0.*(2 locations).*" \
67 "set a break-point at function in all instances for a selected ASM file."
68
This page took 0.031817 seconds and 4 git commands to generate.