From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id aN4zCMuImmEyUQAAWB0awg (envelope-from ) for ; Sun, 21 Nov 2021 12:58:35 -0500 Received: by simark.ca (Postfix, from userid 112) id 1F7341F0CE; Sun, 21 Nov 2021 12:58:35 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.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 82C5C1EDF0 for ; Sun, 21 Nov 2021 12:58:34 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 27D923858428 for ; Sun, 21 Nov 2021 17:58:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 27D923858428 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1637517514; bh=IxnNUUwzeKPJ8jMc/EtN+rI198f+nrx9508P7v1TFb8=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=w9cIQPPvmCtquiQXvpG9b7yQQp3V0MohVs2VoJGJ9T4UxtS9RrXLG1izT50T3rtfB DmO49YTHRecaYw8MPWM6RxJpmW8+B/Mtlsa9IucmJ4Ww7PEoevYO3f47D5OR4YuttD /f+5RJa8N06s8xw/AEJMcvnSgXVR3I/RDJOsyp6g= Received: from lndn.lancelotsix.com (lndn.lancelotsix.com [51.195.220.111]) by sourceware.org (Postfix) with ESMTPS id 75EB43858D3C for ; Sun, 21 Nov 2021 17:57:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 75EB43858D3C Received: from Plymouth.lan (unknown [IPv6:2a02:390:9086:0:e409:90b0:99cc:9f98]) by lndn.lancelotsix.com (Postfix) with ESMTPSA id 50E15854FA; Sun, 21 Nov 2021 17:57:20 +0000 (UTC) To: gdb-patches@sourceware.org Subject: [PATCH 02/29] gdb/testsuite: Remove duplicates from gdb.base/miscexprs.exp Date: Sun, 21 Nov 2021 17:56:09 +0000 Message-Id: <20211121175636.779325-3-lsix@lancelotsix.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211121175636.779325-1-lsix@lancelotsix.com> References: <20211121175636.779325-1-lsix@lancelotsix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.11 (lndn.lancelotsix.com [0.0.0.0]); Sun, 21 Nov 2021 17:57:21 +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: Lancelot SIX Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" When running the testsuite I see: Running .../gdb/testsuite/gdb.base/miscexprs.exp ... DUPLICATE: gdb.base/miscexprs.exp: print value of !ibig.i[100] DUPLICATE: gdb.base/miscexprs.exp: print value of !ibig.i[100] Fix the name of some misnamed tests. Tested on x86_64. --- gdb/testsuite/gdb.base/miscexprs.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/gdb.base/miscexprs.exp b/gdb/testsuite/gdb.base/miscexprs.exp index 86f41215283..c1fc7420545 100644 --- a/gdb/testsuite/gdb.base/miscexprs.exp +++ b/gdb/testsuite/gdb.base/miscexprs.exp @@ -118,10 +118,10 @@ gdb_test "print !sbig.s\[90\]" " = $false" \ "print value of !sbig.s\[90\]" gdb_test "print !fbig.f\[100\]" " = $false" \ - "print value of !ibig.i\[100\]" + "print value of !fbig.f\[100\]" gdb_test "print !dbig.d\[202\]" " = $false" \ - "print value of !ibig.i\[100\]" + "print value of !dbig.d\[202\]" gdb_test "print sbig.s\[90\] * 10" " = 2550" \ "print value of !sbig.s\[90\] * 10" -- 2.33.1