]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/config/sim.exp
This commit was manufactured by cvs2svn to create branch
[thirdparty/binutils-gdb.git] / gdb / testsuite / config / sim.exp
CommitLineData
c906108c 1# Test Framework Driver for GDB driving a builtin simulator
9b254dd1
DJ
2# Copyright 1994, 1997, 1998, 2004, 2007, 2008
3# Free Software Foundation, Inc.
c906108c
SS
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
e22f8b7c 7# the Free Software Foundation; either version 3 of the License, or
c906108c 8# (at your option) any later version.
e22f8b7c 9#
c906108c
SS
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
e22f8b7c 14#
c906108c 15# You should have received a copy of the GNU General Public License
e22f8b7c 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
17
18load_lib gdb.exp
19
20#
21# gdb_target_sim
22# Set gdb to target the simulator
23#
24proc gdb_target_sim { } {
25 global gdb_prompt
c906108c
SS
26
27 set target_sim_options "[board_info target gdb,target_sim_options]";
28
29 send_gdb "target sim $target_sim_options\n"
30 set timeout 60
31 verbose "Timeout is now $timeout seconds" 2
32 gdb_expect {
33 -re "Connected to the simulator.*$gdb_prompt $" {
34 verbose "Set target to sim"
35 }
36 timeout {
37 perror "Couldn't set target for simulator."
38 cleanup
b7b73cae 39 return -1
c906108c
SS
40 }
41 }
42 set timeout 10
43 verbose "Timeout is now $timeout seconds" 2
b7b73cae 44 return 0
c906108c
SS
45}
46
47#
48# gdb_load -- load a file into the debugger.
49# return a -1 if anything goes wrong.
50#
51proc gdb_load { arg } {
52 global verbose
53 global loadpath
54 global loadfile
55 global GDB
56 global gdb_prompt
57
83f66e8f
DJ
58 if { $arg != "" } {
59 if [gdb_file_cmd $arg] then { return -1 }
60 }
c906108c 61
b7b73cae 62 if [gdb_target_sim] then { return -1 }
c906108c
SS
63
64 send_gdb "load\n"
65 set timeout 2400
66 verbose "Timeout is now $timeout seconds" 2
67 gdb_expect {
68 -re ".*$gdb_prompt $" {
69 if $verbose>1 then {
70 send_user "Loaded $arg into $GDB\n"
71 }
72 set timeout 30
73 verbose "Timeout is now $timeout seconds" 2
954269c2 74 return 0
c906108c
SS
75 }
76 -re "$gdb_prompt $" {
77 if $verbose>1 then {
78 perror "GDB couldn't load."
79 }
80 }
81 timeout {
82 if $verbose>1 then {
83 perror "Timed out trying to load $arg."
84 }
85 }
86 }
954269c2 87 return -1
c906108c 88}