2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 2003-2014 Free Software Foundation, Inc.
|
2003-01-09 19:18:04 +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
|
2003-01-09 19:18:04 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2003-01-09 19:18:04 +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
|
|
|
#
|
2003-01-09 19:18:04 +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/>. */
|
2003-01-09 19:18:04 +00:00
|
|
|
|
|
|
|
# Test running a program from the GDB prompt and then detaching it.
|
|
|
|
# NOTE: This test could be much more thorough.
|
|
|
|
|
|
|
|
|
|
|
|
# Only GNU/Linux is known to support this.
|
|
|
|
if { ! [istarget "*-*-linux*"] } {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Are we on a target board?
|
|
|
|
if [is_remote target] then {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 18:49:03 +00:00
|
|
|
standard_testfile attach.c
|
|
|
|
set escapedbinfile [string_to_regexp ${binfile}]
|
2003-01-09 19:18:04 +00:00
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested detach.exp
|
|
|
|
return -1
|
2003-01-09 19:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc do_detach_tests {} {
|
|
|
|
global srcdir
|
|
|
|
global binfile
|
2003-08-07 17:55:41 +00:00
|
|
|
global escapedbinfile
|
2003-01-09 19:18:04 +00:00
|
|
|
global subdir
|
|
|
|
global pass
|
|
|
|
|
|
|
|
runto_main
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "set should_exit = 1" "set should_exit, $pass"
|
2003-08-07 17:55:41 +00:00
|
|
|
gdb_test "detach" "Detaching from program: .*$escapedbinfile, .*" "detach, $pass"
|
2003-01-09 19:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Start with a fresh gdb
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
global pass
|
|
|
|
set pass "one"
|
|
|
|
do_detach_tests
|
|
|
|
|
|
|
|
# Wait a moment and do it again.
|
|
|
|
exec sleep 1
|
|
|
|
|
|
|
|
set pass "two"
|
|
|
|
do_detach_tests
|
|
|
|
|
|
|
|
return 0
|