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
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
if [get_compiler_info] {
2006-08-10 07:27:22 +02:00
return -1
1999-08-31 03:14:27 +02:00
}
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
if {[build_executable $testfile.exp $testfile $srcfile debug] == -1} {
untested $testfile.exp
1999-08-31 03:14:27 +02:00
return -1
}
########################################
##
## Don't do any of these tests until we reach consensus on this file.
##
return 0
########################################
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
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
send_gdb "next&\n"
gdb_expect {
-re "^next&\r\n$gdb_prompt.*z = 9.*completed\.\r\n" { pass "next &" }
-re "$gdb_prompt.*completed\.$" { fail "next &" }
timeout { fail "(timeout) next &" }
}
send_gdb "step&\n"
gdb_expect {
-re "^step&\r\n$gdb_prompt.*y = foo \\(\\).*completed\.\r\n" { pass "step &" }
-re "$gdb_prompt.*completed\.$" { fail "step &" }
timeout { fail "(timeout) step &" }
}
send_gdb "step&\n"
gdb_expect {
-re "^step&\r\n$gdb_prompt foo \\(\\) at .*async.c.*x = 5.*completed\.\r\n" \
{ pass "step &" }
-re "$gdb_prompt.*completed\.$" { fail "step &" }
timeout { fail "(timeout) step &" }
}
send_gdb "stepi&\n"
gdb_expect {
-re "^stepi&\r\n$gdb_prompt.*$hex.*x = 5.*completed\.\r\n" { pass "stepi &" }
-re "$gdb_prompt.*completed\.$" { fail "stepi &" }
timeout { fail "(timeout) stepi &" }
}
send_gdb "nexti&\n"
gdb_expect {
-re "^nexti&\r\n$gdb_prompt.*y = 3.*completed\.\r\n" { pass "nexti &" }
-re "$gdb_prompt.*completed\.$" { fail "nexti &" }
timeout { fail "(timeout) nexti &" }
}
send_gdb "finish&\n"
gdb_expect {
-re "^finish&\r\nRun till exit from #0 foo \\(\\) at.*async.c.*\r\n$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = foo \\(\\).*Value returned is.*= 8.*completed\.\r\n" \
{ pass "finish &" }
-re "$gdb_prompt.*completed\.$" { fail "finish &" }
timeout { fail "(timeout) finish &" }
}
send_gdb "jump 33&\n"
gdb_expect {
-re "^jump 33&.*Continuing at $hex.*$gdb_prompt.*Breakpoint 2, baz \\(\\) at.*async.c.*return 5.*completed\.\r\n" \
{ pass "jump &" }
-re ".*$gdb_prompt.*completed\.$" { fail "jump &" }
timeout { fail "(timeout) jump &" }
}
send_gdb "until 35&\n"
gdb_expect {
-re "^until 35&.*$gdb_prompt.*$hex in main \\(\\) at.*async.c.*y = baz \\(\\).*completed\.\r\n" \
{ pass "until &" }
-re "$gdb_prompt.*completed\.$" { fail "until &" }
timeout { fail "(timeout) until &" }
}
2014-03-19 00:19:51 +01:00
gdb_test_no_output "set exec-done-display off"