1 # Copyright 2008, 2009 Free Software Foundation, Inc.
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.
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.
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/>.
16 # This file tests setting breakpoints according to the full path of a
19 set testfile "fullname"
20 set srcfile ${testfile}.c
21 set binfile ${objdir}/${subdir}/${testfile}
23 # We rely on being able to copy things around.
25 if { [is_remote host] } {
26 untested "setting breakpoints by full path"
30 # Create a temporary file in the build directory. Use a different
31 # filename in case ${srcdir} == ${objdir}.
32 if { [catch {file copy -force ${srcdir}/${subdir}/${srcfile} \
33 ${objdir}/${subdir}/tmp-${srcfile}}] != 0 } {
34 error "Could not create temporary file"
38 # Build the test executable using an absolute path.
39 if { [gdb_compile "${objdir}/${subdir}/tmp-${srcfile}" "${binfile}" executable {debug}] != "" } {
43 # Unlike most GDB tests, we do not use gdb_reinitialize_dir in this script.
44 # We're testing GDB's ability to find files in other ways.
46 # Get the line number.
48 set line [gdb_get_line_number "set breakpoint 1 here"]
50 # Initialize GDB after getting the line number, to make sure
51 # symbols aren't loaded.
57 set msg "set breakpoint by full path before loading symbols - built absolute"
58 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {
64 gdb_test "break main" \
65 "Breakpoint.*at.*line.*" "set breakpoint at main - built absolute"
67 set msg "set breakpoint by full path after loading symbols - built absolute"
68 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {
74 # Build the test executable using a relative path.
75 if { [gdb_compile "${subdir}/tmp-${srcfile}" "${binfile}" executable {debug}] != "" } {
83 set msg "set breakpoint by full path before loading symbols - built relative"
84 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {
90 gdb_test "break main" \
91 "Breakpoint.*at.*line.*" "set breakpoint at main - built relative"
93 set msg "set breakpoint by full path after loading symbols - built relative"
94 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {
100 # Build the test executable using relative paths not relative to the directory
101 # we'll run GDB from.
105 if { [gdb_compile "tmp-${srcfile}" "${testfile}" executable {debug}] != "" } {
115 set msg "set breakpoint by full path before loading symbols - built other"
116 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {
122 gdb_test "break main" \
123 "Breakpoint.*at.*line.*" "set breakpoint at main - built other"
125 set msg "set breakpoint by full path after loading symbols - built other"
126 if { [gdb_breakpoint ${objdir}/${subdir}/tmp-${srcfile}:${line} {no-message}] != 0 } {