1 # Test Framework Driver
for GDB driving a builtin simulator
2 # Copyright
1994-2019 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
3 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
, see
<http
://www.gnu.org
/licenses
/>.
19 #
Set gdb to target the simulator
21 proc gdb_target_sim
{ } {
24 set target_sim_options
"[board_info target gdb,target_sim_options]"
26 send_gdb
"target sim $target_sim_options\n"
28 -re
"Connected to the simulator.*$gdb_prompt $" {
29 verbose
"Set target to sim"
32 perror
"Couldn't set target for simulator."
40 # gdb_load
-- load a file into the debugger.
41 #
return a
-1 if anything goes wrong.
43 proc gdb_load
{ arg } {
51 if [gdb_file_cmd $
arg] then { return -1 }
54 if [gdb_target_sim
] then { return -1 }
58 -re
".*$gdb_prompt $" {
60 send_user
"Loaded $arg into $GDB\n"
66 perror
"GDB couldn't load."
71 perror
"Timed out trying to load $arg."