1 # Test Framework Driver
for GDB driving a builtin simulator
2 # Copyright
1994, 1997, 1998, 2004 Free Software Foundation
, Inc.
4 # This
program is free software
; you can redistribute it and
/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation
; either version
2 of the License
, or
7 #
(at your option
) any later version.
9 # This
program is distributed in the hope that it will be useful
,
10 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License
for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this
program; if not
, write to the Free Software
16 # Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
, MA
02111-1307, USA.
22 #
Set gdb to target the simulator
24 proc gdb_target_sim
{ } {
28 set target_sim_options
"[board_info target gdb,target_sim_options]";
30 send_gdb
"target sim $target_sim_options\n"
32 verbose
"Timeout is now $timeout seconds" 2
34 -re
"Connected to the simulator.*$gdb_prompt $" {
35 verbose
"Set target to sim"
38 perror
"Couldn't set target for simulator."
44 verbose
"Timeout is now $timeout seconds" 2
48 # gdb_load
-- load a file into the debugger.
49 #
return a
-1 if anything goes wrong.
51 proc gdb_load
{ arg } {
59 if [gdb_file_cmd $
arg] then { return -1 }
66 verbose
"Timeout is now $timeout seconds" 2
68 -re
".*$gdb_prompt $" {
70 send_user
"Loaded $arg into $GDB\n"
73 verbose
"Timeout is now $timeout seconds" 2
78 perror
"GDB couldn't load."
83 perror
"Timed out trying to load $arg."