2014-01-01 04:54:24 +01:00
|
|
|
# Copyright 1999-2014 Free Software Foundation, Inc.
|
1999-08-31 03:14:27 +02: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 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-08-31 03:14:27 +02:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
1999-08-31 03:14:27 +02: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 20:14:19 +02:00
|
|
|
#
|
1999-08-31 03:14:27 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-08-31 03:14:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# test running programs
|
|
|
|
#
|
|
|
|
|
test suite update - gdb.base/[ab]
Convert files gdb.base/[ab]*.exp to use standard_output_file et al.
* a2-run.exp, all-bin.exp, annota1.exp, annota3.exp, anon.exp,
args.exp, arithmet.exp, arrayidx.exp, assign.exp, async-shell.exp,
async.exp, attach-pie-misread.exp, attach-pie-noexec.exp,
attach-twice.exp, attach.exp, auxv.exp, bang.exp, bfp-test.exp,
bigcore.exp, bitfields.exp, bitfields2.exp, break-entry.exp,
break-interp.exp, break-on-linker-gcd-function.exp,
breakpoint-shadow.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:47:53 +02:00
|
|
|
standard_testfile
|
1999-08-31 03:14:27 +02:00
|
|
|
|
|
|
|
########################################
|
|
|
|
##
|
|
|
|
## Don't do any of these tests until we reach consensus on this file.
|
|
|
|
##
|
|
|
|
return 0
|
|
|
|
########################################
|
|
|
|
|
2014-03-19 16:22:44 +01:00
|
|
|
if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
|
|
|
|
untested $testfile.exp
|
|
|
|
return -1
|
|
|
|
}
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 00:19:51 +01:00
|
|
|
gdb_test_no_output "set target-async on"
|
|
|
|
|
1999-08-31 03:14:27 +02:00
|
|
|
#
|
|
|
|
# set it up at a breakpoint so we can play with it
|
|
|
|
#
|
|
|
|
if ![runto_main] then {
|
|
|
|
perror "couldn't run to breakpoint"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2010-06-09 00:58:03 +02:00
|
|
|
gdb_test "break baz" ".*" ""
|
1999-08-31 03:14:27 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Make sure we get a 'completed' message when the target is done.
|
|
|
|
#
|
2014-03-19 00:19:51 +01:00
|
|
|
gdb_test_no_output "set exec-done-display on"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
# Test a background execution command. COMMAND is the command to
|
|
|
|
# send. BEFORE_PROMPT is the pattern expected before the GDB prompt
|
|
|
|
# is output. AFTER_PROMPT is the pattern expected after the prompt
|
|
|
|
# and before "completed". MESSAGE is optional, and is the pass/fail
|
|
|
|
# message to br printed. If omitted, then the command string is used
|
|
|
|
# as message.
|
|
|
|
proc test_background {command before_prompt after_prompt {message ""}} {
|
|
|
|
global gdb_prompt
|
|
|
|
|
|
|
|
if {$message eq ""} {
|
|
|
|
set message $command
|
|
|
|
}
|
|
|
|
|
|
|
|
send_gdb "$command\n"
|
|
|
|
gdb_expect {
|
|
|
|
-re "^$command\r\n${before_prompt}${gdb_prompt}${after_prompt}completed\.\r\n" {
|
|
|
|
pass "$message"
|
|
|
|
}
|
|
|
|
-re "$gdb_prompt.*completed\.$" {
|
|
|
|
fail "$message"
|
|
|
|
}
|
|
|
|
timeout {
|
|
|
|
fail "$message (timeout)"
|
|
|
|
}
|
|
|
|
}
|
1999-08-31 03:14:27 +02:00
|
|
|
}
|
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "next&" "" ".*z = 9.*"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "step&" "" ".*y = foo \\(\\).*"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "step&" "" " foo \\(\\) at .*async.c.*x = 5.*"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "stepi&" "" ".*$hex.*x = 5.*"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "nexti&" "" ".*y = 3.*"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "finish&" \
|
|
|
|
"Run till exit from #0 foo \\(\\) at.*async.c.*\r\n" \
|
|
|
|
".*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*"
|
2014-03-19 16:22:44 +01:00
|
|
|
|
2014-03-19 16:22:45 +01:00
|
|
|
set jump_here [gdb_get_line_number "jump here"]
|
|
|
|
test_background "jump $jump_here&" \
|
|
|
|
".*Continuing at $hex.*" \
|
|
|
|
".*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*" \
|
|
|
|
"jump&"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 16:22:44 +01:00
|
|
|
set until_here [gdb_get_line_number "until here"]
|
2014-03-19 16:22:45 +01:00
|
|
|
test_background "until $until_here&" \
|
|
|
|
".*" \
|
|
|
|
".*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*" \
|
|
|
|
"until&"
|
1999-08-31 03:14:27 +02:00
|
|
|
|
2014-03-19 00:19:51 +01:00
|
|
|
gdb_test_no_output "set exec-done-display off"
|