]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.ada/exec_changed.exp
run copyright.sh for 2011.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / exec_changed.exp
CommitLineData
7b6bb8da 1# Copyright 2005, 2007, 2008, 2009, 2010, 2011 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
ec3c07fc
NS
22if { [skip_ada_tests] } { return -1 }
23
9f0d94e8
JB
24set testdir "exec_changed"
25file mkdir ${objdir}/${subdir}/${testdir}
26
27# Build the first test program (note that cygwin needs the $EXEEXT).
28set testfile1 "${testdir}/first"
29set srcfile1 ${srcdir}/${subdir}/${testfile1}.adb
30set binfile1 ${objdir}/${subdir}/${testfile1}$EXEEXT
31
ec3c07fc
NS
32if {[gdb_compile_ada "${srcfile1}" "${binfile1}" executable {debug}] != ""} {
33 return -1
9f0d94e8
JB
34}
35
36# Build the second test program
37set testfile2 "${testdir}/second"
38set srcfile2 ${srcdir}/${subdir}/${testfile2}.adb
39set binfile2 ${objdir}/${subdir}/${testfile2}$EXEEXT
40
ec3c07fc
NS
41if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable {debug}] != ""} {
42 return -1
9f0d94e8
JB
43}
44
45# Start with a fresh gdb.
46
47set testfile "${testdir}/common"
48set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
49
50gdb_start
51gdb_reinitialize_dir $srcdir/$subdir
52
53# Load the first executable.
54
de7ff789 55gdb_test "shell mv ${binfile1} ${binfile}" ".*" ""
9f0d94e8
JB
56gdb_load ${binfile}
57
58# Start the program, we should land in the program main procedure
b741e217
DJ
59if { [gdb_start_cmd] < 0 } {
60 untested start
61 return -1
62}
63
64gdb_test "" \
9f0d94e8
JB
65 "first \\(\\) at .*first.adb.*" \
66 "start first"
67
68# Restore first executable to its original name, and move
69# second executable into its place. Ensure that the new
70# executable is at least a second newer than the old.
71
de7ff789
MS
72gdb_test "shell mv ${binfile} ${binfile1}" ".*" ""
73gdb_test "shell mv ${binfile2} ${binfile}" ".*" ""
74gdb_test "shell sleep 1" ".*" ""
75gdb_test "shell touch ${binfile}" ".*" ""
9f0d94e8 76
9f0d94e8
JB
77# Start the program a second time, GDB should land in procedure Second
78# this time.
79
b741e217
DJ
80if { [gdb_start_cmd] < 0 } {
81 fail "start second"
9f0d94e8 82} else {
b741e217 83 gdb_test "" \
9f0d94e8
JB
84 "second \\(\\) at .*second.adb.*" \
85 "start second"
86}