* [RFA/testsuite/ada] Test re-starting program after exec changed
@ 2005-03-08 22:10 Joel Brobecker
2005-03-08 22:13 ` Daniel Jacobowitz
0 siblings, 1 reply; 3+ messages in thread
From: Joel Brobecker @ 2005-03-08 22:10 UTC (permalink / raw)
To: gdb-patches
[-- Attachment #1: Type: text/plain, Size: 567 bytes --]
Hello,
This is a testcase that verifies that GDB correctly restarts the program
when the executable underneath has changed. See
http://sources.redhat.com/ml/gdb-patches/2005-03/msg00125.html
for the associated patch.
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.
Tested on x86-linux. Used to fail before the patch referenced above
was applied. Now PASSes.
Ok to apply?
Thank you,
--
Joel
[-- Attachment #2: first.adb --]
[-- Type: text/plain, Size: 45 bytes --]
procedure First is
begin
null;
end First;
[-- Attachment #3: second.adb --]
[-- Type: text/plain, Size: 47 bytes --]
procedure Second is
begin
null;
end Second;
[-- Attachment #4: exec_changed.exp --]
[-- Type: text/plain, Size: 2757 bytes --]
# 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"
}
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [RFA/testsuite/ada] Test re-starting program after exec changed
2005-03-08 22:10 [RFA/testsuite/ada] Test re-starting program after exec changed Joel Brobecker
@ 2005-03-08 22:13 ` Daniel Jacobowitz
2005-03-08 22:20 ` Joel Brobecker
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Jacobowitz @ 2005-03-08 22:13 UTC (permalink / raw)
To: Joel Brobecker; +Cc: gdb-patches
On Tue, Mar 08, 2005 at 02:10:13PM -0800, Joel Brobecker wrote:
> Hello,
>
> This is a testcase that verifies that GDB correctly restarts the program
> when the executable underneath has changed. See
>
> http://sources.redhat.com/ml/gdb-patches/2005-03/msg00125.html
>
> for the associated patch.
>
> 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.
>
> Tested on x86-linux. Used to fail before the patch referenced above
> was applied. Now PASSes.
>
> Ok to apply?
OK.
--
Daniel Jacobowitz
CodeSourcery, LLC
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFA/testsuite/ada] Test re-starting program after exec changed
2005-03-08 22:13 ` Daniel Jacobowitz
@ 2005-03-08 22:20 ` Joel Brobecker
0 siblings, 0 replies; 3+ messages in thread
From: Joel Brobecker @ 2005-03-08 22:20 UTC (permalink / raw)
To: gdb-patches
> > 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.
> >
> > Tested on x86-linux. Used to fail before the patch referenced above
> > was applied. Now PASSes.
> >
> > Ok to apply?
>
> OK.
Geeee, what took you so long? ;-)
Thanks a lot for the quick review. It was shorter for you to approve it
than it was for me to actually do the commit.
Cheers,
--
Joel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-03-08 22:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-03-08 22:10 [RFA/testsuite/ada] Test re-starting program after exec changed Joel Brobecker
2005-03-08 22:13 ` Daniel Jacobowitz
2005-03-08 22:20 ` Joel Brobecker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox