aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2005-03-08 22:19:15 +0000
committerJoel Brobecker <brobecker@gnat.com>2005-03-08 22:19:15 +0000
commit9f0d94e8935eab0d8f9ccec56798b0cc01999c17 (patch)
tree20506bcd36f4965f6acb8bc4ea1d0ef8155450cf /gdb
parent1bf1958d5335be20af3fd1f564c64f2121e3e873 (diff)
downloadgdb-9f0d94e8935eab0d8f9ccec56798b0cc01999c17.zip
gdb-9f0d94e8935eab0d8f9ccec56798b0cc01999c17.tar.gz
gdb-9f0d94e8935eab0d8f9ccec56798b0cc01999c17.tar.bz2
* gdb.ada/exec_changed/first.adb: New file.
* gdb.ada/exec_changed/second.adb: New file. * gdb.ada/exec_changed.exp: New testcase.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.ada/exec_changed.exp87
-rw-r--r--gdb/testsuite/gdb.ada/exec_changed/first.adb4
-rw-r--r--gdb/testsuite/gdb.ada/exec_changed/second.adb4
4 files changed, 101 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 73f01bd..251e030 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-09 Joel Brobecker <brobecker@adacore.com>
+
+ * gdb.ada/exec_changed/first.adb: New file.
+ * gdb.ada/exec_changed/second.adb: New file.
+ * gdb.ada/exec_changed.exp: New testcase.
+
2005-03-08 Nathan Sidwell <nathan@codesourcery.com>
* gdb.cp/userdef.cc (A1::operator+): New unary plus.
diff --git a/gdb/testsuite/gdb.ada/exec_changed.exp b/gdb/testsuite/gdb.ada/exec_changed.exp
new file mode 100644
index 0000000..f9561ea
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/exec_changed.exp
@@ -0,0 +1,87 @@
+# Copyright 2005 Free Software Foundation, Inc.
+
+# 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
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+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
+
+if {[gdb_compile_ada "${srcfile1}" "${binfile1}" executable [list debug ]] != "" } {
+ return -1
+}
+
+# Build the second test program
+set testfile2 "${testdir}/second"
+set srcfile2 ${srcdir}/${subdir}/${testfile2}.adb
+set binfile2 ${objdir}/${subdir}/${testfile2}$EXEEXT
+
+if {[gdb_compile_ada "${srcfile2}" "${binfile2}" executable [list debug ]] != "" } {
+ return -1
+}
+
+# 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
+gdb_test "start" \
+ "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}" "" ""
+
+# Stop GDB from asking confirmations. This test will restart the program
+# and we don't need GDB to ask us to confirm that we want to kill the
+# current process.
+gdb_test "set confirm off" "" ""
+
+# Start the program a second time, GDB should land in procedure Second
+# this time.
+
+if [is_remote target] {
+ unsupported "start the program a second time ";
+} else {
+ # Start the program, we should land in the program main procedure
+ gdb_test "start" \
+ "second \\(\\) at .*second.adb.*" \
+ "start second"
+}
+
diff --git a/gdb/testsuite/gdb.ada/exec_changed/first.adb b/gdb/testsuite/gdb.ada/exec_changed/first.adb
new file mode 100644
index 0000000..1a8b7e2
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/exec_changed/first.adb
@@ -0,0 +1,4 @@
+procedure First is
+begin
+ null;
+end First;
diff --git a/gdb/testsuite/gdb.ada/exec_changed/second.adb b/gdb/testsuite/gdb.ada/exec_changed/second.adb
new file mode 100644
index 0000000..60b8574
--- /dev/null
+++ b/gdb/testsuite/gdb.ada/exec_changed/second.adb
@@ -0,0 +1,4 @@
+procedure Second is
+begin
+ null;
+end Second;