From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1726) id 266263857B98; Wed, 25 Jan 2023 11:27:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 266263857B98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1674646042; bh=7y8iTNoygdgzy90cXVFV4XtdNt2qdSiiRhpWZNdEg1k=; h=From:To:Subject:Date:From; b=hwI7J1AAsibqgO2GlITVpv+duD8S0cEtDAINoWvxtWdrDCGOzJVueFNaC0NOhPrj6 DolCgoqOQaYEo6WRC6WzZGkPtDlzrTtzwWFxC2/ocqtimtMqYOcZKdqirswEtncbZq s19TaCRppeuBTz8G5zhf8C8XphnpwzLEBGNMCoQs= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Andrew Burgess To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb/testsuite/tui: more testing of the 'focus' command X-Act-Checkin: binutils-gdb X-Git-Author: Andrew Burgess X-Git-Refname: refs/heads/master X-Git-Oldrev: 3602634035f6a346ac043a7f01442a7290b9f588 X-Git-Newrev: 24f3aded1d42f515527e2de7e8e9e26f0b77c932 Message-Id: <20230125112722.266263857B98@sourceware.org> Date: Wed, 25 Jan 2023 11:27:22 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D24f3aded1d42= f515527e2de7e8e9e26f0b77c932 commit 24f3aded1d42f515527e2de7e8e9e26f0b77c932 Author: Andrew Burgess Date: Tue Dec 20 15:01:29 2022 +0000 gdb/testsuite/tui: more testing of the 'focus' command =20 I noticed that we didn't have many tests of the tui 'focus' command, so I started adding some. This exposed a bug in GDB; we are able to focus windows that should not be focusable, e.g. the 'status' window. =20 This is harmless until we then do 'focus next' or 'focus prev', along this code path we assert that the currently focused window is focusable, which obviously, is not always true, so GDB fails with an assertion error. =20 The fix is simple; add a check to the tui_set_focus_command function to ensure that the selected window is focusable. If it is not then an error is thrown. The new tests I've added cover this case. Diff: --- gdb/testsuite/gdb.tui/tui-focus.c | 22 ++++++++++++ gdb/testsuite/gdb.tui/tui-focus.exp | 68 +++++++++++++++++++++++++++++++++= ++++ gdb/tui/tui-win.c | 3 ++ 3 files changed, 93 insertions(+) diff --git a/gdb/testsuite/gdb.tui/tui-focus.c b/gdb/testsuite/gdb.tui/tui-= focus.c new file mode 100644 index 00000000000..3a264f239ed --- /dev/null +++ b/gdb/testsuite/gdb.tui/tui-focus.c @@ -0,0 +1,22 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2023 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 . = */ + +int +main () +{ + return 0; +} diff --git a/gdb/testsuite/gdb.tui/tui-focus.exp b/gdb/testsuite/gdb.tui/tu= i-focus.exp new file mode 100644 index 00000000000..9e2a1cd0935 --- /dev/null +++ b/gdb/testsuite/gdb.tui/tui-focus.exp @@ -0,0 +1,68 @@ +# Copyright 2023 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 . + +# Minimal testcase that just checks that the various "layout $foo" +# commands do not cause gdb to crash. + +require allow_tui_tests + +tuiterm_env + +standard_testfile + +if {[prepare_for_testing "failed to prepare" ${testfile} ${srcfile}]} { + return -1 +} + +# Run a series of tests based on various test specifications. +# +# Each test specification is a tuple where the first item is the name of a +# window, and the second item is a boolean indicating if we expect that +# window to be present in the default (src) layout. +foreach spec {{src true} {cmd true} {status true} {regs false} {asm false}= } { + lassign $spec window valid_p + with_test_prefix "window=3D$window" { + + Term::clean_restart 24 80 $binfile + if {![Term::prepare_for_tui]} { + unsupported "TUI not supported" + return + } + + Term::command_no_prompt_prefix "focus $window" + + if {$valid_p} { + # The 'status' window is special, it's present in the + # default (src) layout, but is not focusable. + if {$window =3D=3D "status"} { + Term::check_region_contents "check focus error" 0 16 80 1 \ + "^Window \"$window\" cannot be focused\\s*" + } else { + Term::check_region_contents "check focus message" 0 16 80 1 \ + "^Focus set to $window window\\.\\s*" + } + } else { + Term::check_region_contents "check focus error" 0 16 80 1 \ + "^Unrecognized window name \"$window\"\\s*" + } + + Term::check_box "check src box" 0 0 80 15 + + # At one point the following 'focus prev' command would trigger a + # crash in GDB, GDB was allowing users to set focus to the 'status' + # window, and 'focus prev' would then trigger an assert. + Term::command "focus prev" + } +} diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c index 58372005ff8..9c088899817 100644 --- a/gdb/tui/tui-win.c +++ b/gdb/tui/tui-win.c @@ -723,6 +723,9 @@ tui_set_focus_command (const char *arg, int from_tty) if (!win_info->is_visible ()) error (_("Window \"%s\" is not visible"), arg); =20 + if (!win_info->can_focus ()) + error (_("Window \"%s\" cannot be focused"), arg); + tui_set_win_focus_to (win_info); gdb_printf (_("Focus set to %s window.\n"), tui_win_with_focus ()->name ());