1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 2019 Free Software Foundation, Inc.
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
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test that GDB can correctly read the binary and shared libraries
19 # with different sysroot setups: local and "target:".
21 load_lib gdbserver-support.exp
23 if { [skip_gdbserver_tests] } {
24 verbose "skipping gdbserver tests"
29 if {[build_executable "failed to prepare" $testfile $srcfile "additional_flags=--no-builtin"] == -1} {
33 # Run once with sysroot set to the local filesystem and once set to the remote
35 foreach_with_prefix sysroot { "local" "remote" } {
40 if { $sysroot == "local" } {
41 set sysroot_command "/"
42 set reading_symbols "Reading symbols from $binfile..."
44 set sysroot_command "target:"
45 set reading_symbols "Reading $binfile from remote target..."
51 # Make sure we're disconnected, in case we're testing with an
52 # extended-remote board, therefore already connected.
53 gdb_test "disconnect" ".*"
56 set res [gdbserver_start "" $binfile]
57 set gdbserver_protocol [lindex $res 0]
58 set gdbserver_gdbport [lindex $res 1]
61 gdb_test_no_output "set sysroot $sysroot_command"
63 # Connect to gdbserver, making sure GDB reads in the binary correctly.
64 set test "connect to remote and read binary"
65 if {[gdb_target_cmd $gdbserver_protocol $gdbserver_gdbport $reading_symbols] == 0} {
72 gdb_test "continue" "Breakpoint $decimal.* main.*" "continue to main"
74 # Test that we can stop inside a library.
76 gdb_test "continue" "Breakpoint $decimal.* printf .*" "continue to printf"