old-cross-binutils/gdb/testsuite/gdb.linespec/break-asm-file.exp
Joel Brobecker 32d0add0a6 Update year range in copyright notice of all files owned by the GDB project.
gdb/ChangeLog:

        Update year range in copyright notice of all files.
2015-01-01 13:32:14 +04:00

55 lines
1.8 KiB
Text

# Copyright 2012-2015 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Bug 17394
# Test for break-point at a function only for a selected ASM file.
load_lib dwarf.exp
standard_testfile .c
set execfile $testfile
set asm_file1 break-asm-file1.s
set asm_file0 break-asm-file0.s
# This test can only be run on targets which support DWARF-2 and use gas.
if {![dwarf2_support]} {
return 0
}
if {[prepare_for_testing ${testfile}.exp $execfile \
[list $srcfile $asm_file1 $asm_file0] \
{debug nowarnings optimize=-O0}]} {
untested "Skipping ${testfile}."
return
}
clean_restart $execfile
gdb_test "break a/$asm_file0:func" \
"Breakpoint 1 at 0x\[0-9a-fA-F\]+: file .*a/$asm_file0, line 7\\\." \
"set a break-point at a global function only for a selected ASM file."
gdb_test "delete 1"
gdb_test "break b/$asm_file0:func" \
"Breakpoint 2 at 0x\[0-9a-fA-F\]+: file .*b/$asm_file0, line 7\\\." \
"set a break-point at a function only for a selected ASM file."
gdb_test "delete 2"
gdb_test "break $asm_file0:func" \
"Breakpoint 3 at 0x\[0-9a-fA-F\]+: .*$asm_file0.*(2 locations).*" \
"set a break-point at function in all instances for a selected ASM file."