In lib/tuiterm.exp the builtin spawn is overridden by a tui-specific version.
After running the first test-case that imports tuiterm.exp, the override
remains active, so it can cause trouble in subsequent test-cases, even if they
do not import tuiterm.exp. See f.i. commit
c8d4f6dfd9 "[gdb/testsuite] Fix
spawn in tuiterm.exp".
Fix this by:
- adding a variable gdb_finish_hooks which is a list of procs to run during
gdb_finish
- adding a proc tuiterm_env that is used in test-cases instead of
"load_lib tuiterm.exp".
- letting tuiterm_env:
- install the tui-specific spawn version, and
- use the gdb_finish_hooks to schedule restoring the builtin spawn
version.
Tested on x86_64-linux.
gdb/testsuite/ChangeLog:
2020-06-12 Tom de Vries <tdevries@suse.de>
* lib/tuiterm.exp (spawn): Rename to ...
(tui_spawn): ... this.
(toplevel): Move rename of spawn ...
(gdb_init_tuiterm): ... here. New proc.
(gdb_finish_tuiterm): New proc.
* lib/gdb.exp (gdb_finish_hooks): New global var.
(gdb_finish): Handle gdb_finish_hooks.
(tuiterm_env): New proc.
* gdb.python/tui-window.exp: Replace load_lib tuiterm.exp with
tuiterm_env.
* gdb.tui/basic.exp: Same.
* gdb.tui/corefile-run.exp: Same.
* gdb.tui/empty.exp: Same.
* gdb.tui/list-before.exp: Same.
* gdb.tui/list.exp: Same.
* gdb.tui/main.exp: Same.
* gdb.tui/new-layout.exp: Same.
* gdb.tui/regs.exp: Same.
* gdb.tui/resize.exp: Same.
* gdb.tui/tui-layout-asm-short-prog.exp: Same.
* gdb.tui/tui-layout-asm.exp: Same.
* gdb.tui/tui-missing-src.exp: Same.
* gdb.tui/winheight.exp: Same.
+2020-06-12 Tom de Vries <tdevries@suse.de>
+
+ * lib/tuiterm.exp (spawn): Rename to ...
+ (tui_spawn): ... this.
+ (toplevel): Move rename of spawn ...
+ (gdb_init_tuiterm): ... here. New proc.
+ (gdb_finish_tuiterm): New proc.
+ * lib/gdb.exp (gdb_finish_hooks): New global var.
+ (gdb_finish): Handle gdb_finish_hooks.
+ (tuiterm_env): New proc.
+ * gdb.python/tui-window.exp: Replace load_lib tuiterm.exp with
+ tuiterm_env.
+ * gdb.tui/basic.exp: Same.
+ * gdb.tui/corefile-run.exp: Same.
+ * gdb.tui/empty.exp: Same.
+ * gdb.tui/list-before.exp: Same.
+ * gdb.tui/list.exp: Same.
+ * gdb.tui/main.exp: Same.
+ * gdb.tui/new-layout.exp: Same.
+ * gdb.tui/regs.exp: Same.
+ * gdb.tui/resize.exp: Same.
+ * gdb.tui/tui-layout-asm-short-prog.exp: Same.
+ * gdb.tui/tui-layout-asm.exp: Same.
+ * gdb.tui/tui-missing-src.exp: Same.
+ * gdb.tui/winheight.exp: Same.
+
2020-06-12 Tom de Vries <tdevries@suse.de>
PR testsuite/26110
# Test a TUI window implemented in Python.
load_lib gdb-python.exp
-load_lib tuiterm.exp
+tuiterm_env
# This test doesn't care about the inferior.
standard_testfile py-arch.c
# Basic TUI tests.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
#
# Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1765117
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Test TUI resizing with empty windows.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile
# Ensure that "list" before starting the TUI will affect the view.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Ensure that "list" will switch to the source view.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Test that "file" shows "main".
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Test "tui new-layout".
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Simple test of TUI register window.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Test TUI resizing.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# Ensure that 'layout asm' can scroll away from the last line of a
# very short program using a page up sized scroll.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout-asm-short-prog.S
# Ensure that 'layout asm' before starting the inferior puts us in the
# asm layout and displays the disassembly for main.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
# layout must show the contents of f2.c.
# 7. Going back to main() shall result in no contents again.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile
# Test the "winheight" command.
-load_lib "tuiterm.exp"
+tuiterm_env
standard_testfile tui-layout.c
exit 2
}
+# List of procs to run in gdb_finish.
+set gdb_finish_hooks [list]
+
load_lib libgloss.exp
load_lib cache.exp
load_lib gdb-utils.exp
}
set banned_traced 0
}
+
+ global gdb_finish_hooks
+ foreach gdb_finish_hook $gdb_finish_hooks {
+ $gdb_finish_hook
+ }
+ set gdb_finish_hooks [list]
}
global debug_format
return $result
}
+# Setup tuiterm.exp environment. To be used in test-cases instead of
+# "load_lib tuiterm.exp". Calls initialization function and schedules
+# finalization function.
+proc tuiterm_env { } {
+ load_lib tuiterm.exp
+
+ # Do initialization.
+ tuiterm_env_init
+
+ # Schedule finalization.
+ global gdb_finish_hooks
+ lappend gdb_finish_hooks tuiterm_env_finish
+}
+
# Always load compatibility stuff.
load_lib future.exp
# array; but dejagnu doesn't export this globally. So, we have to
# wrap spawn with our own function, so that we can capture this value.
# The value is later used in calls to stty.
-rename spawn builtin_spawn
-proc spawn {args} {
+proc tuiterm_spawn { args } {
set result [uplevel builtin_spawn $args]
global gdb_spawn_name
upvar spawn_out spawn_out
return $result
}
+# Initialize tuiterm.exp environment.
+proc tuiterm_env_init { } {
+ # Override spawn with tui_spawn.
+ rename spawn builtin_spawn
+ rename tuiterm_spawn spawn
+}
+
+# Finalize tuiterm.exp environment.
+proc tuiterm_env_finish { } {
+ # Restore spawn.
+ rename spawn tuiterm_spawn
+ rename builtin_spawn spawn
+}
+
namespace eval Term {
variable _rows
variable _cols