bde40b8f56
This test fails with --target_board=native-extended-gdbserver because it misses the usual "disconnect": (gdb) spawn ../gdbserver/gdbserver --once :2347 /home/pedro/gdb/mygit/build/gdb/testsuite/gdb.server/server-exec-info Process /home/pedro/gdb/mygit/build/gdb/testsuite/gdb.server/server-exec-info created; pid = 4736 Listening on port 2347 target extended-remote localhost:2347 Already connected to a remote target. Disconnect? (y or n) ^CsQuit (gdb) et sysroot remote: Undefined command: "et". Try "help". (gdb) n The program is not being run. (gdb) FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt) info files (gdb) FAIL: gdb.server/server-exec-info.exp: info files gdb/testsuite/ChangeLog: 2015-07-28 Pedro Alves <palves@redhat.com> * gdb.server/server-exec-info.exp: Issue a "disconnect".
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
# Copyright (C) 2012-2015 Free Software Foundation, Inc.
|
|
#
|
|
# 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
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
load_lib gdbserver-support.exp
|
|
|
|
# We test for skip_shlib_tests in this test because without a main
|
|
# exec file we only have the exec target loaded if shared libraries
|
|
# are present.
|
|
if {[skip_gdbserver_tests] || [skip_shlib_tests]} {
|
|
return
|
|
}
|
|
|
|
standard_testfile server.c
|
|
if [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] {
|
|
return -1
|
|
}
|
|
|
|
# Make sure we're disconnected, in case we're testing with an
|
|
# extended-remote board, therefore already connected.
|
|
gdb_test "disconnect" ".*"
|
|
|
|
gdb_test_no_output "set remote pid-to-exec-file-packet off"
|
|
gdb_test "file" ".*" "file" \
|
|
{Discard symbol table from `.*'\? \(y or n\) } "y"
|
|
gdbserver_run ""
|
|
gdb_test "set sysroot remote:"
|
|
gdb_test "info files" "\r\nLocal exec file:\r\n\t<no file loaded>"
|