From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 515493856956; Tue, 13 Sep 2022 07:41:33 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 515493856956 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1663054893; bh=JFsf+mG70ijfvo5RScUv+4++rvFFiVWjTIL9JK4zg6A=; h=From:To:Subject:Date:In-Reply-To:References:From; b=IY3FAPFxH9UPlBPFJBFvx9EdpX+X14WPVxq+UUpFGphxOwvlXtNbkxXCvGfiWLlsi 2mNHYCM0sH7RHmBOVFM791uHFYo1JH7YxNFOfZf5//+dQOaqy0aEXyzrakAB1i2Yis 6hEadR/Ve4HV0ipuMDJml/J6Ll+zJRYqIyO+1EgQ= From: "vries at gcc dot gnu.org" To: gdb-prs@sourceware.org Subject: [Bug gdb/27813] FAIL: gdb.linespec/cpcompletion.exp: incomplete-scope-colon: tab complete "b cpls.cc:'ns_incomplete_scope_colon_test::i" (clearing input line) (timeout) Date: Tue, 13 Sep 2022 07:41:33 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: gdb X-Bugzilla-Version: HEAD X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D27813 --- Comment #10 from Tom de Vries --- Tentative fix: ... diff --git a/gdb/event-top.c b/gdb/event-top.c index 290c3d87744..24c61131b8d 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -186,6 +186,8 @@ gdb_rl_callback_read_char_wrapper_noexcept () noexcept TRY_SJLJ { rl_callback_read_char (); + while (rl_pending_signal () !=3D 0) + rl_check_signals (); if (after_char_processing_hook) (*after_char_processing_hook) (); } ... --=20 You are receiving this mail because: You are on the CC list for the bug.=