Updated copyright notices for most files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.ada / exec_changed.exp
CommitLineData
9b254dd1 1# Copyright 2005, 2007, 2008 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
JB
15
16if $tracelevel then {
17 strace $tracelevel
18}
19
20load_lib "ada.exp"
21
22set testdir "exec_changed"
23file mkdir ${objdir}/${subdir}/${testdir}
24
25# Build the first test program (note that cygwin needs the $EXEEXT).
26set testfile1 "${testdir}/first"
27set srcfile1 ${srcdir}/${subdir}/${testfile1}.adb
28set binfile1 ${objdir}/${subdir}/${testfile1}$EXEEXT
29
81d2cbae
NS
30if {[gdb_compile_ada "${srcfile1}" "${binfile1}" executable [list debug ]] != "" } {
31 return -1
9f0d94e8
JB
32}
33
34# Build the second test program
35set testfile2 "${testdir}/second"
36set srcfile2 ${srcdir}/${subdir}/${testfile2}.adb
37set binfile2 ${objdir}/${subdir}/${testfile2}$EXEEXT
38
81d2cbae
NS
39if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable [list debug ]] != "" } {
40 return -1
9f0d94e8
JB
41}
42
43# Start with a fresh gdb.
44
45set testfile "${testdir}/common"
46set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
47
48gdb_start
49gdb_reinitialize_dir $srcdir/$subdir
50
51# Load the first executable.
52
53gdb_test "shell mv ${binfile1} ${binfile}" "" ""
54gdb_load ${binfile}
55
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
70gdb_test "shell mv ${binfile} ${binfile1}" "" ""
71gdb_test "shell mv ${binfile2} ${binfile}" "" ""
72gdb_test "shell sleep 1" "" ""
73gdb_test "shell touch ${binfile}" "" ""
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 {
b741e217 81 gdb_test "" \
9f0d94e8
JB
82 "second \\(\\) at .*second.adb.*" \
83 "start second"
84}
This page took 0.258632 seconds and 4 git commands to generate.