2009-01-03 05:58:08 +00:00
|
|
|
# Copyright 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
|
2005-03-08 22:19:15 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2005-03-08 22:19:15 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2005-03-08 22:19:15 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2005-03-08 22:19:15 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-08 22:19:15 +00:00
|
|
|
|
|
|
|
if $tracelevel then {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
|
|
|
load_lib "ada.exp"
|
|
|
|
|
|
|
|
set testdir "exec_changed"
|
|
|
|
file mkdir ${objdir}/${subdir}/${testdir}
|
|
|
|
|
|
|
|
# Build the first test program (note that cygwin needs the $EXEEXT).
|
|
|
|
set testfile1 "${testdir}/first"
|
|
|
|
set srcfile1 ${srcdir}/${subdir}/${testfile1}.adb
|
|
|
|
set binfile1 ${objdir}/${subdir}/${testfile1}$EXEEXT
|
|
|
|
|
revert 2007-01-11 Nathan Sidwell <nathan@codesourcery.com>
* lib/gdb.exp (gdb_compile_test): New.
(skip_ada_tests, skip_java_tests): New.
(gdb_compile): Use gdb_compile_test for f77.
* lib/ada.exp (gdb_compile_ada): Use gdb_compile_test to record result.
* lib/java.exp (compile_java_from_source): Remove runtests check,
use gdb_compile_test to record result.
* gdb.ada/packed_array.exp, gdb.ada/fixed_points.exp,
gdb.ada/exec_changed.exp, gdb.ada/start.exp,
gdb.ada/watch_arg.exp, gdb.ada/null_record.exp,
gdb.ada/array_return.exp, gdb.ada/arrayidx.exp,
gdb.mi/mi-var-child-f.exp, gdb.fortran/types.exp,
gdb.fortran/array-element.exp, gdb.fortran/subarray.exp,
gdb.fortran/derived-type.exp, gdb.fortran/exprs.exp,
gdb.java/jmisc.exp, gdb.java/jprint.exp,
gdb.java/jv-print.exp, gdb.java/jmain.exp: Add language skip,
adjust gdb_compile invocations.
2007-01-12 11:36:21 +00:00
|
|
|
if {[gdb_compile_ada "${srcfile1}" "${binfile1}" executable [list debug ]] != "" } {
|
|
|
|
return -1
|
2005-03-08 22:19:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Build the second test program
|
|
|
|
set testfile2 "${testdir}/second"
|
|
|
|
set srcfile2 ${srcdir}/${subdir}/${testfile2}.adb
|
|
|
|
set binfile2 ${objdir}/${subdir}/${testfile2}$EXEEXT
|
|
|
|
|
revert 2007-01-11 Nathan Sidwell <nathan@codesourcery.com>
* lib/gdb.exp (gdb_compile_test): New.
(skip_ada_tests, skip_java_tests): New.
(gdb_compile): Use gdb_compile_test for f77.
* lib/ada.exp (gdb_compile_ada): Use gdb_compile_test to record result.
* lib/java.exp (compile_java_from_source): Remove runtests check,
use gdb_compile_test to record result.
* gdb.ada/packed_array.exp, gdb.ada/fixed_points.exp,
gdb.ada/exec_changed.exp, gdb.ada/start.exp,
gdb.ada/watch_arg.exp, gdb.ada/null_record.exp,
gdb.ada/array_return.exp, gdb.ada/arrayidx.exp,
gdb.mi/mi-var-child-f.exp, gdb.fortran/types.exp,
gdb.fortran/array-element.exp, gdb.fortran/subarray.exp,
gdb.fortran/derived-type.exp, gdb.fortran/exprs.exp,
gdb.java/jmisc.exp, gdb.java/jprint.exp,
gdb.java/jv-print.exp, gdb.java/jmain.exp: Add language skip,
adjust gdb_compile invocations.
2007-01-12 11:36:21 +00:00
|
|
|
if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable [list debug ]] != "" } {
|
|
|
|
return -1
|
2005-03-08 22:19:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Start with a fresh gdb.
|
|
|
|
|
|
|
|
set testfile "${testdir}/common"
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}$EXEEXT
|
|
|
|
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
|
|
|
|
# Load the first executable.
|
|
|
|
|
|
|
|
gdb_test "shell mv ${binfile1} ${binfile}" "" ""
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
# Start the program, we should land in the program main procedure
|
2007-03-27 17:59:38 +00:00
|
|
|
if { [gdb_start_cmd] < 0 } {
|
|
|
|
untested start
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "" \
|
2005-03-08 22:19:15 +00:00
|
|
|
"first \\(\\) at .*first.adb.*" \
|
|
|
|
"start first"
|
|
|
|
|
|
|
|
# Restore first executable to its original name, and move
|
|
|
|
# second executable into its place. Ensure that the new
|
|
|
|
# executable is at least a second newer than the old.
|
|
|
|
|
|
|
|
gdb_test "shell mv ${binfile} ${binfile1}" "" ""
|
|
|
|
gdb_test "shell mv ${binfile2} ${binfile}" "" ""
|
|
|
|
gdb_test "shell sleep 1" "" ""
|
|
|
|
gdb_test "shell touch ${binfile}" "" ""
|
|
|
|
|
|
|
|
# Start the program a second time, GDB should land in procedure Second
|
|
|
|
# this time.
|
|
|
|
|
2007-03-27 17:59:38 +00:00
|
|
|
if { [gdb_start_cmd] < 0 } {
|
|
|
|
fail "start second"
|
2005-03-08 22:19:15 +00:00
|
|
|
} else {
|
2007-03-27 17:59:38 +00:00
|
|
|
gdb_test "" \
|
2005-03-08 22:19:15 +00:00
|
|
|
"second \\(\\) at .*second.adb.*" \
|
|
|
|
"start second"
|
|
|
|
}
|