binutils-gdb/gdb/testsuite/gdb.mi/new-ui-mi-sync.exp
Alan Hayward 81f47ac29f testsuite: Disable some tests when logging
Fix up all failures encountered when running the testsuite with
GDB_DEBUG="infrun".

Some tests rely on enabling debugging for various components.  With
debugging on, this will be lost to the debug file.

Disable separate tty for mi tests when debugging.  This currently
does not work.

disasm.c should send errors to the stderr instead of the logfile.

Note that enabling debug for other components might still cause
additional errors above what has been fixed here.

gdb/ChangeLog:

	* disasm.c (set_disassembler_options): Send errors to stderr.

gdb/testsuite/ChangeLog:

	* gdb.base/breakpoint-in-ro-region.exp: Disable when debugging.
	* gdb.base/debug-expr.exp: Likewise.
	* gdb.base/foll-fork.exp: Likewise.
	* gdb.base/foll-vfork.exp: Likewise.
	* gdb.base/fork-print-inferior-events.exp: Likewise.
	* gdb.base/gdb-sigterm.exp: Likewise.
	* gdb.base/gdbinit-history.exp: Likewise.
	* gdb.base/osabi.exp: Likewise.
	* gdb.base/sss-bp-on-user-bp-2.exp: Likewise.
	* gdb.base/ui-redirect.exp: Likewise.
	* gdb.gdb/unittest.exp: Likewise.
	* gdb.mi/mi-break.exp: Disable separate-mi-tty when debugging.
	* gdb.mi/mi-watch.exp: Likewise.
	* gdb.mi/new-ui-mi-sync.exp: Likewise.
	* gdb.mi/user-selected-context-sync.exp: Likewise.
	* gdb.python/python.exp: Disable debug test when debugging.
	* gdb.threads/check-libthread-db.exp: Disable when debugging.
	* gdb.threads/signal-while-stepping-over-bp-other-thread.exp:
	Likewise.
	* gdb.threads/stepi-random-signal.exp: Likewise.
2019-05-17 15:35:08 +01:00

121 lines
3.5 KiB
Plaintext

# Copyright 2016-2019 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/>.
# Test that on a separate MI UI (new-ui mi <tty>), the printing of an
# asynchronous event (e.g. =library-loaded) during the synchronous
# execution of a command (e.g. -exec-run or -exec-continue) does not
# prematurely re-enable MI input. After executing synchronous
# commands, MI should not process further commands until the inferior
# stops again. See PR gdb/20418.
# Do not run if gdb debug is enabled as it doesn't work for separate-mi-tty.
if [gdb_debug_enabled] {
untested "debug is enabled"
return 0
}
load_lib mi-support.exp
standard_testfile
if {[build_executable $testfile.exp $testfile ${srcfile} "debug"] == -1} {
untested "failed to compile"
return -1
}
# The test driver. SYNC_COMMAND specifies which command is used to
# synchronously start the program running.
proc do_test {sync_command} {
global srcdir subdir binfile srcfile
global gdb_spawn_id gdb_main_spawn_id mi_spawn_id inferior_spawn_id
global gdb_prompt mi_gdb_prompt
mi_gdb_exit
if {[mi_gdb_start "separate-mi-tty"] != 0} {
fail "could not start gdb"
return
}
mi_delete_breakpoints
mi_gdb_reinitialize_dir $srcdir/$subdir
mi_gdb_load $binfile
# Start a synchronous run/continue on the MI UI.
set test "send synchronous execution command"
if {$sync_command == "run"} {
if {[mi_run_cmd] >= 0} {
pass $test
} else {
return
}
} else {
if {[mi_runto main] < 0} {
return
}
if {[mi_send_resuming_command_raw "123-exec-continue" $test] >= 0} {
pass $test
} else {
return
}
}
# Send -thread-info immediately after. If everything works
# correctly, this is only serviced by GDB when the execution
# stops.
send_gdb "456-thread-info\n"
pass "send -thread-info"
# Make sure we trigger an asynchronous event (=thread-group-added)
# in the separate MI UI. Note the "run" variant usually triggers
# =thread-group-started/=thread-created/=library-loaded as well.
with_spawn_id $gdb_main_spawn_id {
gdb_test "add-inferior" "Added inferior 2"
}
# Interrupt the program.
with_spawn_id $gdb_main_spawn_id {
set message "interrupt on the CLI"
gdb_test_multiple "interrupt" "$message" {
-re "$gdb_prompt " {
gdb_test_multiple "" "$message" {
-re "received signal SIGINT" {
pass $message
}
}
}
}
}
# On the MI channel, we should see the interrupt output _before_
# the -thread-info output.
with_spawn_id $mi_spawn_id {
mi_expect_interrupt "got MI interrupt output"
}
# Look for the result of our -thread-info. If input were
# re-enabled too soon, the thread would incorrectly show up with
# state="running".
with_spawn_id $mi_spawn_id {
mi_gdb_test "" "456\\^.*state=\"stopped\".*" \
"got -thread-info output and thread is stopped"
}
}
foreach_with_prefix sync-command {"run" "continue"} {
do_test ${sync-command}
}