From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14081 invoked by alias); 7 Jan 2020 19:30:34 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 14011 invoked by uid 89); 7 Jan 2020 19:30:27 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-8.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:640, screen X-HELO: gateway30.websitewelcome.com Received: from gateway30.websitewelcome.com (HELO gateway30.websitewelcome.com) (192.185.168.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 07 Jan 2020 19:30:25 +0000 Received: from cm11.websitewelcome.com (cm11.websitewelcome.com [100.42.49.5]) by gateway30.websitewelcome.com (Postfix) with ESMTP id 39468780C for ; Tue, 7 Jan 2020 13:30:16 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id ouYSi2Qi8iJ43ouYSiKyLd; Tue, 07 Jan 2020 13:30:16 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=SvxkS/Kr6Ocq9abfnF1eeVRQIOUa4VZrjRwW6akG/zg=; b=kEvl4AXrumL6gSZh8kDaq+c/ms rF346JHbX+N4gB63P2hLPA7yQFpayGZQM9IbvE3dt7ngLtwD+lG0sTQWrnr9fvkga2WfdBPMfHT1X /0I4PcfmYQ1l5ajULZKomwoDY; Received: from 75-166-123-50.hlrn.qwest.net ([75.166.123.50]:38126 helo=murgatroyd) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1iouYR-001iaM-Sq; Tue, 07 Jan 2020 12:30:16 -0700 From: Tom Tromey To: Andrew Burgess Cc: gdb-patches@sourceware.org, Tom Tromey , Hannes Domani Subject: Re: [PATCH 3/6] gdb/testsuite/tui: Introduce check_box_contents References: <874kxrc3ha.fsf@tromey.com> Date: Tue, 07 Jan 2020 19:30:00 -0000 In-Reply-To: (Andrew Burgess's message of "Tue, 7 Jan 2020 11:52:16 +0000") Message-ID: <87pnfvf4jd.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2020-01/txt/msg00156.txt.bz2 >>>>> "Andrew" == Andrew Burgess writes: Andrew> A new test procedure for matching the contents of one screen box Andrew> against a regexp. This can be used to match the contents of one TUI Andrew> window against a regexp without any of the borders, or other windows Andrew> being included in the matched output (as is currently the case with Andrew> check_contents). Andrew> This will be used in a later commit. Andrew> gdb/testsuite/ChangeLog: Andrew> * lib/tuiterm.exp (Term::check_box_contents): New proc. Thanks, this looks good. Tom