1 # Copyright 2005, 2007, 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/>.
22 set testdir "exec_changed"
23 file mkdir ${objdir}/${subdir}/${testdir}
25 # Build the first test program (note that cygwin needs the $EXEEXT).
26 set testfile1 "${testdir}/first"
27 set srcfile1 ${srcdir}/${subdir}/${testfile1}.adb
28 set binfile1 ${objdir}/${subdir}/${testfile1}$EXEEXT
30 if {[gdb_compile_ada "${srcfile1}" "${binfile1}" executable [list debug ]] != "" } {
34 # Build the second test program
35 set testfile2 "${testdir}/second"
36 set srcfile2 ${srcdir}/${subdir}/${testfile2}.adb
37 set binfile2 ${objdir}/${subdir}/${testfile2}$EXEEXT
39 if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable [list debug ]] != "" } {
43 # Start with a fresh gdb.
45 set testfile "${testdir}/common"
46 set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
49 gdb_reinitialize_dir $srcdir/$subdir
51 # Load the first executable.
53 gdb_test "shell mv ${binfile1} ${binfile}" "" ""
56 # Start the program, we should land in the program main procedure
57 if { [gdb_start_cmd] < 0 } {
63 "first \\(\\) at .*first.adb.*" \
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.
70 gdb_test "shell mv ${binfile} ${binfile1}" "" ""
71 gdb_test "shell mv ${binfile2} ${binfile}" "" ""
72 gdb_test "shell sleep 1" "" ""
73 gdb_test "shell touch ${binfile}" "" ""
75 # Start the program a second time, GDB should land in procedure Second
78 if { [gdb_start_cmd] < 0 } {
82 "second \\(\\) at .*second.adb.*" \