From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id DxezMSY1uWGMGgAAWB0awg (envelope-from ) for ; Tue, 14 Dec 2021 19:21:58 -0500 Received: by simark.ca (Postfix, from userid 112) id B83561F0D2; Tue, 14 Dec 2021 19:21:58 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 508F71F0BD for ; Tue, 14 Dec 2021 19:21:58 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 981A1385841C for ; Wed, 15 Dec 2021 00:21:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 981A1385841C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1639527717; bh=S7MA4LsGwMDd45OSvYZXqYgvH7piKdcAjECACKppDqk=; h=Date:To:Subject:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=HyibqRcrbzQ1edUtF7EVRTO++NGCs0e7Q0onJrRgTSXRK4PpcQhXBrrEtZwztU4rO Xpnl3R8shOFVE8RQRSzu5Q/Ya7cGh6WIdEq5as9cf8UPKzXYXGC3977f08kZn03ZJ3 jpksFyo8MMtca7fgc5A4PB8x3g5XjJ9fSlJRGXPs= Received: from lndn.lancelotsix.com (lndn.lancelotsix.com [51.195.220.111]) by sourceware.org (Postfix) with ESMTPS id 3C0FC3858D28 for ; Wed, 15 Dec 2021 00:21:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3C0FC3858D28 Received: from Plymouth (unknown [IPv6:2a02:390:9086:0:c851:d496:b69a:1c3c]) by lndn.lancelotsix.com (Postfix) with ESMTPSA id 6920D80D5D; Wed, 15 Dec 2021 00:21:37 +0000 (UTC) Date: Wed, 15 Dec 2021 00:21:33 +0000 To: Pedro Alves Subject: Re: [PATCH 19/29] gdb/testsuite: Remove duplicates from gdb.base/exprs.exp Message-ID: <20211215002133.umytg4rzvwx2zy3d@Plymouth> References: <20211121175636.779325-1-lsix@lancelotsix.com> <20211121175636.779325-20-lsix@lancelotsix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.11 (lndn.lancelotsix.com [0.0.0.0]); Wed, 15 Dec 2021 00:21:37 +0000 (UTC) X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Lancelot SIX via Gdb-patches Reply-To: Lancelot SIX Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" > The following test_expr is also under output-radix 8. This seems to be begging for: > > with_test_prefix "output-radix 8" { > gdb_test "set output-radix 8" ".*" > test_expr "print red" "\\$\[0-9\]* = red" > test_expr "print/d red" "\\$\[0-9\]* = 0" > gdb_test "set output-radix 10" ".*" > } > > WDYT? Yes, it makes sense. Thanks. I have updated my patch locally accordingly. Lancelot.