Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / exec_changed.exp
CommitLineData
88b9d363 1# Copyright 2005-2022 Free Software Foundation, Inc.
9f0d94e8
JB
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
9f0d94e8 6# (at your option) any later version.
e22f8b7c 7#
9f0d94e8
JB
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#
9f0d94e8 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/>.
9f0d94e8 15
9f0d94e8
JB
16load_lib "ada.exp"
17
ec3c07fc
NS
18if { [skip_ada_tests] } { return -1 }
19
8ed5dd9e
JB
20# This testcase verifies the behavior of the `start' command, which
21# does not work when we use the gdb stub...
079670b9 22if [use_gdb_stub] {
5b362f04 23 untested "skipping tests due to use_gdb_stub"
8ed5dd9e
JB
24 return
25}
26
8223e12c 27standard_ada_testfile first
9f0d94e8
JB
28
29# Build the first test program (note that cygwin needs the $EXEEXT).
8223e12c 30if {[gdb_compile_ada "${srcfile}" "${binfile}$EXEEXT" executable {debug}] != ""} {
ec3c07fc 31 return -1
9f0d94e8
JB
32}
33
34# Build the second test program
f0464b23
SM
35set srcfile2 ${srcdir}/${subdir}/${testdir}/second.adb
36set binfile2 [standard_output_file second$EXEEXT]
9f0d94e8 37
ec3c07fc
NS
38if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable {debug}] != ""} {
39 return -1
9f0d94e8
JB
40}
41
42# Start with a fresh gdb.
43
f0464b23 44set common_binfile [standard_output_file common$EXEEXT]
9f0d94e8
JB
45
46gdb_start
47gdb_reinitialize_dir $srcdir/$subdir
48
49# Load the first executable.
50
8223e12c
TT
51gdb_test "shell mv ${binfile} ${common_binfile}" ".*" ""
52gdb_load ${common_binfile}
9f0d94e8 53
efe9b873
TV
54set readnow_p [readnow ${common_binfile}]
55
9f0d94e8 56# Start the program, we should land in the program main procedure
b741e217
DJ
57if { [gdb_start_cmd] < 0 } {
58 untested start
59 return -1
60}
61
62gdb_test "" \
9f0d94e8
JB
63 "first \\(\\) at .*first.adb.*" \
64 "start first"
65
66# Restore first executable to its original name, and move
67# second executable into its place. Ensure that the new
68# executable is at least a second newer than the old.
69
8223e12c
TT
70gdb_test "shell mv ${common_binfile} ${binfile}" ".*" ""
71gdb_test "shell mv ${binfile2} ${common_binfile}" ".*" ""
de7ff789 72gdb_test "shell sleep 1" ".*" ""
8223e12c 73gdb_test "shell touch ${common_binfile}" ".*" ""
9f0d94e8 74
9f0d94e8
JB
75# Start the program a second time, GDB should land in procedure Second
76# this time.
77
b741e217
DJ
78if { [gdb_start_cmd] < 0 } {
79 fail "start second"
9f0d94e8 80} else {
efe9b873
TV
81 if { $readnow_p } {
82 setup_kfail "gdb/26800" *-*-*
83 }
b741e217 84 gdb_test "" \
9f0d94e8
JB
85 "second \\(\\) at .*second.adb.*" \
86 "start second"
87}
85c3a371
DE
88
89# Try again, this time with just changing the file time of first.
90
91clean_restart "${binfile}$EXEEXT"
92
93# Ensure we don't accidently use the main symbol cache.
94gdb_test_no_output "mt set symbol-cache-size 0"
95
96# Put something in the symbol lookup cache that will get looked up when
97# starting after having re-read symbols. PR 17855.
98gdb_breakpoint break_me
99
100gdb_test "shell touch ${binfile}$EXEEXT" ".*" ""
101gdb_test "shell sleep 1" ".*" ""
102
103if { [gdb_start_cmd] < 0 } {
104 # PR 17855: At this point gdb may have crashed or gotten an internal
105 # error, but we still need to detect this. Just issue any simple command
106 # to verify gdb is still running. This will establish in gdb.log whether
107 # gdb is still running.
108 gdb_test_no_output "set \$check_gdb_running = 0" "check gdb running"
109 fail "start just first"
110} else {
efe9b873
TV
111 if { $readnow_p } {
112 setup_kfail "gdb/26800" *-*-*
113 }
85c3a371
DE
114 gdb_test "" \
115 "first \\(\\) at .*first.adb.*" \
116 "start just first"
117}
This page took 1.949247 seconds and 4 git commands to generate.