]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/twice.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / twice.exp
CommitLineData
213516ef 1# Copyright 1997-2023 Free Software Foundation, Inc.
c906108c
SS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c 16
5030a410 17standard_testfile twice.c
c906108c
SS
18set options debug
19lappend options "additional_flags=-I."
20
62cef515
TT
21set local_srcfile [standard_output_file twice-tmp.c]
22set fileid [open $local_srcfile w]
4ec70201
PA
23puts $fileid "#include \"twice.c\""
24close $fileid
c906108c 25
5030a410 26gdb_remote_download host ${srcdir}/${subdir}/twice.c
c906108c 27
62cef515 28if { [gdb_compile $local_srcfile "${binfile}" executable $options] != "" } {
84c93cd5 29 untested "failed to compile"
b60f0898 30 return -1
c906108c
SS
31}
32
33# Start with a fresh gdb.
34
62cef515 35clean_restart $binfile
c906108c 36
65a33d75 37if {[runto_main]} {
c906108c
SS
38 # Test that GDB can still detect whether we have line numbers
39 # even if we're executing code in an include file.
40
41 # The bug was fixed by
42 #Tue Jun 29 11:02:58 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
43 #
44 # * infrun.c (wait_for_inferior): Use find_pc_line not
45 # find_pc_symtab to check whether there is line number
46 # information.
47
48 gdb_test "step" "nothing \\(\\) at.*"
49}
085dd6e6 50remote_exec build "rm -f twice.c"
c906108c 51return 0